473,396 Members | 1,726 Online
Bytes | Software Development & Data Engineering Community
Post Job

Home Posts Topics Members FAQ

Join Bytes to post your question to a community of 473,396 software developers and data experts.

Problems connecting to MSDE SP3a

Good day everyone;
I'm having a program for a PocketPC that was working great, this program
connects to a database (MSDE) but when I updated the MSDE to SP3a everything
blew-up... There is no way I can connect to my database anymore. The funny
part is that if I connect to a full MS-SQL Server the program works just
fine. Do I need to change anything in my connection string so I can connect
to MSDE SP3a? Any Ideas of how I can solve this problem?

I have MSDE2000 SP3a
MDAC 2.8
VS.NET 2003
I'm using System.Data.SqlClient to connect

Here is my connection string.

mString = "Data Source = myServer; Initial Catalog = Aduana; Password = abc;
User Id = sa"

I also tried this:
mString = "User Id = sa; Password = abc; Database= Aduana; Server =
myServer"

Thank you in advance for your help...
Jesus Carmona

Nov 21 '05 #1
4 1543

August 9, 2004

You are using the SA account to login onto the server. When
you upgrade to SP3a, the SA account is no longer supported, if
you use a weak password. You must change you password to
a strong one. I am pretty sure that this is your problem. I am
quite sure that to be a strong password, it has to consist of: a
minimum of 8 characters, some symbols, and both numbers and
letters. I am not positive that this will work, but you might want
to check. I hope this helps!
Joseph MCP
"Jesus Carmona" wrote:
Good day everyone;
I'm having a program for a PocketPC that was working great, this program
connects to a database (MSDE) but when I updated the MSDE to SP3a everything
blew-up... There is no way I can connect to my database anymore. The funny
part is that if I connect to a full MS-SQL Server the program works just
fine. Do I need to change anything in my connection string so I can connect
to MSDE SP3a? Any Ideas of how I can solve this problem?

I have MSDE2000 SP3a
MDAC 2.8
VS.NET 2003
I'm using System.Data.SqlClient to connect

Here is my connection string.

mString = "Data Source = myServer; Initial Catalog = Aduana; Password = abc;
User Id = sa"

I also tried this:
mString = "User Id = sa; Password = abc; Database= Aduana; Server =
myServer"

Thank you in advance for your help...
Jesus Carmona

Nov 21 '05 #2
Thanks Joseph,
I'll try to change the password and check again.

Does this change apply to MS-SQL Server 2000 as well in SP3a?

Thank you very much...
"Joseph MCP" <Jo*******@discussions.microsoft.com> wrote in message
news:E6**********************************@microsof t.com...

August 9, 2004

You are using the SA account to login onto the server. When
you upgrade to SP3a, the SA account is no longer supported, if
you use a weak password. You must change you password to
a strong one. I am pretty sure that this is your problem. I am
quite sure that to be a strong password, it has to consist of: a
minimum of 8 characters, some symbols, and both numbers and
letters. I am not positive that this will work, but you might want
to check. I hope this helps!
Joseph MCP
"Jesus Carmona" wrote:
Good day everyone;
I'm having a program for a PocketPC that was working great, this program
connects to a database (MSDE) but when I updated the MSDE to SP3a everything blew-up... There is no way I can connect to my database anymore. The funny part is that if I connect to a full MS-SQL Server the program works just
fine. Do I need to change anything in my connection string so I can connect to MSDE SP3a? Any Ideas of how I can solve this problem?

I have MSDE2000 SP3a
MDAC 2.8
VS.NET 2003
I'm using System.Data.SqlClient to connect

Here is my connection string.

mString = "Data Source = myServer; Initial Catalog = Aduana; Password = abc; User Id = sa"

I also tried this:
mString = "User Id = sa; Password = abc; Database= Aduana; Server =
myServer"

Thank you in advance for your help...
Jesus Carmona

Nov 21 '05 #3
* "Jesus Carmona" <jc******@noriega-bts.com> scripsit:
I'm having a program for a PocketPC that was working great, this program
connects to a database (MSDE) but when I updated the MSDE to SP3a everything
blew-up... There is no way I can connect to my database anymore. The funny
part is that if I connect to a full MS-SQL Server the program works just
fine. Do I need to change anything in my connection string so I can connect
to MSDE SP3a? Any Ideas of how I can solve this problem?


Notice that there is a separate group for database-related questions
available:

<URL:news://news.microsoft.com/microsoft.public.dotnet.framework.adonet>

--
M S Herfried K. Wagner
M V P <URL:http://dotnet.mvps.org/>
V B <URL:http://dotnet.mvps.org/dotnet/faqs/>
Nov 21 '05 #4
I tried what you suggested, and it didn't work. However I found out that by
default SP3a turns off network connection, using svrnetcn.exe I was able to
turn it back on.
Thanks a lot for your interest.

Regards
Jesus Carmona
"Joseph MCP" <Jo*******@discussions.microsoft.com> wrote in message
news:86**********************************@microsof t.com...

August 9, 2004

Yes, this situation also applies to SQL Server 2000 SP3a.
I will be curious to hear if that solves it...
Joseph MCP
"Jesus Carmona" wrote:
Thanks Joseph,
I'll try to change the password and check again.

Does this change apply to MS-SQL Server 2000 as well in SP3a?

Thank you very much...
"Joseph MCP" <Jo*******@discussions.microsoft.com> wrote in message
news:E6**********************************@microsof t.com...

August 9, 2004

You are using the SA account to login onto the server. When
you upgrade to SP3a, the SA account is no longer supported, if
you use a weak password. You must change you password to
a strong one. I am pretty sure that this is your problem. I am
quite sure that to be a strong password, it has to consist of: a
minimum of 8 characters, some symbols, and both numbers and
letters. I am not positive that this will work, but you might want to check. I hope this helps!
Joseph MCP
"Jesus Carmona" wrote:

> Good day everyone;
> I'm having a program for a PocketPC that was working great, this program > connects to a database (MSDE) but when I updated the MSDE to SP3a

everything
> blew-up... There is no way I can connect to my database anymore. The

funny
> part is that if I connect to a full MS-SQL Server the program works just > fine. Do I need to change anything in my connection string so I can

connect
> to MSDE SP3a? Any Ideas of how I can solve this problem?
>
> I have MSDE2000 SP3a
> MDAC 2.8
> VS.NET 2003
> I'm using System.Data.SqlClient to connect
>
> Here is my connection string.
>
> mString = "Data Source = myServer; Initial Catalog = Aduana;
Password = abc;
> User Id = sa"
>
> I also tried this:
> mString = "User Id = sa; Password = abc; Database= Aduana; Server =
> myServer"
>
> Thank you in advance for your help...
> Jesus Carmona
>
>
>
>


Nov 21 '05 #5

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

2
by: Allcomp | last post by:
Hello, I have seen something strange on a customer's computer. It is a P4 3 GHz with 512 MB Ram running on a Win2K SP3 When he uses a part of my application, it is really slow (more than 10 sec...
3
by: Tim Morrison | last post by:
MSDE2000 I have an application in which I am running a TSQL command of BACKUP DATABASE and RESTORE DATABASE for the backup and restore commands for my application. For testing purposes, i did the...
2
by: Marek Powichrowski | last post by:
Hi all, I have the the problem with logging to MSDE using SQL-DMO interface. On the W2K with LoginSecure=TRUE everything is OK (connect is made without any parameters) But when...
5
by: Igor Solodovnikov | last post by:
Hi. I am trying to automatically backup transaction log when error 9002 happened. So i have created appropriate job and alert to catch this error. I have two instances of sql server under Windows...
2
by: Andy B | last post by:
It's arriving from ebuyer tomorrow for 32 quid. I already have an instance of MSDE running on the laptop and ideally i would like SQL server to be installed and use the current instance and not...
2
by: SQL Server | last post by:
Hi, How do I determine what version of the MSDE running on a server. I want to know if SP3a has been applied. Thanks. Egbon *** Sent via Developersdex http://www.developersdex.com ***
4
by: John Morgan | last post by:
I have Enterprise Manager on my local machine. For the last twelve months it has been connecting without problem to my online SQL Server database provided by my ISP. Three weeks ago the ISP...
1
by: farqua | last post by:
I've finally got MSDE 2000 sp3a to install on my PC by turning on the "Server" service. Duh! Unfortunately, I can't get it to connect to the server when I try to upsize a tables in an mdb...
1
by: LIN | last post by:
I have read few articles on connecting to MSDE but haven't got i was looking for. I have an ASP.NET application which needs to connect to MSDE. I read the article about setting up SQL...
0
by: Charles Arthur | last post by:
How do i turn on java script on a villaon, callus and itel keypad mobile phone
0
by: emmanuelkatto | last post by:
Hi All, I am Emmanuel katto from Uganda. I want to ask what challenges you've faced while migrating a website to cloud. Please let me know. Thanks! Emmanuel
1
by: nemocccc | last post by:
hello, everyone, I want to develop a software for my android phone for daily needs, any suggestions?
1
by: Sonnysonu | last post by:
This is the data of csv file 1 2 3 1 2 3 1 2 3 1 2 3 2 3 2 3 3 the lengths should be different i have to store the data by column-wise with in the specific length. suppose the i have to...
0
marktang
by: marktang | last post by:
ONU (Optical Network Unit) is one of the key components for providing high-speed Internet services. Its primary function is to act as an endpoint device located at the user's premises. However,...
0
Oralloy
by: Oralloy | last post by:
Hello folks, I am unable to find appropriate documentation on the type promotion of bit-fields when using the generalised comparison operator "<=>". The problem is that using the GNU compilers,...
0
jinu1996
by: jinu1996 | last post by:
In today's digital age, having a compelling online presence is paramount for businesses aiming to thrive in a competitive landscape. At the heart of this digital strategy lies an intricately woven...
0
by: Hystou | last post by:
Overview: Windows 11 and 10 have less user interface control over operating system update behaviour than previous versions of Windows. In Windows 11 and 10, there is no way to turn off the Windows...
0
agi2029
by: agi2029 | last post by:
Let's talk about the concept of autonomous AI software engineers and no-code agents. These AIs are designed to manage the entire lifecycle of a software development project—planning, coding, testing,...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.