Soul
05-12-2005, 03:58 PM
First
You have to enable the named connection for the MSDE service.
Run C:\Program Files\Microsoft SQL Server\80\Tools\Binn\svrnetcn.exe
Select tcp/ip and move to enabled protocol
Second
Run C:\Program Files\Microsoft SQL Server\80\Tools\Binn\osql -E
This will give you a trusted sql server connection where you can issue commands
Third
Type the following commands...
1> use master
2> EXEC sp_addlogin 'yourusernameyouwanttobeadmin','yourpasswd'
3> EXEC sp_addsrvrolemember 'yourusernameyouwanttobeadmin', 'sysadmin'
4> go
This should create a user with the name 'yourusernameyouwanttobeadmin' and with 'yourpassword' that you can use to register your SQL Server into SQL Enterprise Manager.
You have to enable the named connection for the MSDE service.
Run C:\Program Files\Microsoft SQL Server\80\Tools\Binn\svrnetcn.exe
Select tcp/ip and move to enabled protocol
Second
Run C:\Program Files\Microsoft SQL Server\80\Tools\Binn\osql -E
This will give you a trusted sql server connection where you can issue commands
Third
Type the following commands...
1> use master
2> EXEC sp_addlogin 'yourusernameyouwanttobeadmin','yourpasswd'
3> EXEC sp_addsrvrolemember 'yourusernameyouwanttobeadmin', 'sysadmin'
4> go
This should create a user with the name 'yourusernameyouwanttobeadmin' and with 'yourpassword' that you can use to register your SQL Server into SQL Enterprise Manager.