Accessing NetSDK MSDE instance installed by Net Framework with user/ password

N

NWx

Hi,

I'm an old developer, but didn't used SQL Server or MSDE to much before.

I have NetSDK instance of MSDE installed on my PC by Net Framework SDK.
All quickstart samples access it using trusted connection.
However, I want to access it using user / password, but I have no idea what
is default username / password to use.

Any help is appreciated.

Regards
 
A

Andrea Montanari

hi,
NWx said:
Hi,

I'm an old developer, but didn't used SQL Server or MSDE to much before.

I have NetSDK instance of MSDE installed on my PC by Net Framework SDK.
All quickstart samples access it using trusted connection.
However, I want to access it using user / password, but I have no idea what
is default username / password to use.

Any help is appreciated.

Regards
in order to use SQL Server authentication instead of WindowsNT trusted
authentication, you have to hack a little bit the registry as described in
http://support.microsoft.com/default.aspx?scid=kb;en-us;285097 .... the same
article explains how to change the default trusted authentication setting at
install time...
as regard login credential, there is no "default" user in SQL Server....
there is a default super user, a system administrator member that can not be
removed, known as "sa" ... this user is available on all SQL Server
installations...
you can use this standard "sa" login with the password you provided at
install time.... hope you did not leave it blank, but still remember it
=;-))
if you do not remember anymore, please login as a sysadmin (or security
admin) trusted Windows login and execute, via oSql.exe,
EXEC sp_password @new = 'your new pwd', @loginame = 'sa'
you can change user's pwd with Enterprise Manager too, if available....
then, logging as 'sa' or with a Windows NT trusted user, you can create
additional SQL Server authenticated logins with fewer prmission, accordingly
to you needs.
hth
--
Andrea Montanari (Microsoft MVP - SQL Server)
http://www.asql.biz/DbaMgr.shtm http://italy.mvps.org
DbaMgr2k ver 0.5.0 - DbaMgr ver 0.51.1
(my vb6+sql-dmo little try to provide MS MSDE 1.0 and MSDE 2000 a visual
interface)
--------- remove DMO to reply
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Members online

Forum statistics

Threads
473,766
Messages
2,569,569
Members
45,042
Latest member
icassiem

Latest Threads

Top