Click here to Skip to main content
15,920,896 members
Home / Discussions / C#
   

C#

 
Generalcan't find Enterprise Manager Pin
theStorminMormon1-Sep-05 2:08
theStorminMormon1-Sep-05 2:08 
GeneralRe: can't find Enterprise Manager Pin
Susan Hernandez1-Sep-05 5:32
Susan Hernandez1-Sep-05 5:32 
GeneralRe: can't find Enterprise Manager Pin
theStorminMormon1-Sep-05 6:07
theStorminMormon1-Sep-05 6:07 
GeneralRe: can't find Enterprise Manager Pin
Susan Hernandez1-Sep-05 5:36
Susan Hernandez1-Sep-05 5:36 
GeneralRe: can't find Enterprise Manager Pin
theStorminMormon1-Sep-05 6:10
theStorminMormon1-Sep-05 6:10 
GeneralRe: remote database connection question Pin
Susan Hernandez31-Aug-05 15:20
Susan Hernandez31-Aug-05 15:20 
GeneralRe: remote database connection question Pin
theStorminMormon1-Sep-05 1:37
theStorminMormon1-Sep-05 1:37 
AnswerMore info on MSDE Pin
Susan Hernandez1-Sep-05 7:35
Susan Hernandez1-Sep-05 7:35 
Well, I'm glad I have been able to be of some slight assistance so far. I was happy to see in the other thread (MSDE 2000) some of the same information we've been talking about.

So what it looks like you may have to do at this point is try to log in using an administrator password. The default administrator user name is "sa" and the default password is usually blank, "sa", or "password". I hope you changed that during installation, but if you didn't, then you can try one of those suggestions. Once you log in as an administrator, you may want to set up some logins right away, such as the ComputerName\Administrators group with full privileges.

I really feel bad for you that you are working with MSDE as your first experience working with SQL Server, because although the engine is great and powerful, there is no graphical help and you have to do everything using SQL Commands. Larger ramp-up time than normal. The good news is there's very comprehensive documentation called SQL Server Books On-Line at http://msdn.microsoft.com/library/default.asp?url=/library/en-us/tsqlref/ts_tsqlcon_6lyk.asp?frame=true[^] which gives you syntax for all the SQL Queries you could ever wish to do.

Let's take a SQL Server Authentication example:

Add the login 'SusanH' to the SQL Server instance
EXEC sp_addlogin 'SusanH', 'SusanHsPassword'

Give 'SusanH' some permissions
GRANT CREATE DATABASE, CREATE TABLE<br />
TO SusanH


Now let's look at a Windows Authentication example:

Grant permissions to an existing domain account
EXEC sp_grantlogin 'MyDomain\SusanH' -or-
EXEC sp_grantlogin 'MyComputerName\SusanH'

I'm not completely sure if these are proper samples that will work, however I think you get the idea and can take it from here by looking through the transact-sql reference documentation. They give the syntax for the statements at the top, examples at the bottom, and links to 'see also' topics.

Good luck.
QuestionGetting CMYK colors from bmp Pin
yarns31-Aug-05 4:19
yarns31-Aug-05 4:19 
AnswerRe: Getting CMYK colors from bmp Pin
Niklas Ulvinge31-Aug-05 8:10
Niklas Ulvinge31-Aug-05 8:10 
GeneralRe: Getting CMYK colors from bmp Pin
Dario Solera31-Aug-05 8:54
Dario Solera31-Aug-05 8:54 
GeneralRe: Getting CMYK colors from bmp Pin
Niklas Ulvinge31-Aug-05 8:57
Niklas Ulvinge31-Aug-05 8:57 
GeneralRe: Getting CMYK colors from bmp Pin
Dario Solera31-Aug-05 9:29
Dario Solera31-Aug-05 9:29 
GeneralRe: Getting CMYK colors from bmp Pin
Niklas Ulvinge31-Aug-05 9:33
Niklas Ulvinge31-Aug-05 9:33 
GeneralRe: Getting CMYK colors from bmp Pin
Dario Solera31-Aug-05 9:41
Dario Solera31-Aug-05 9:41 
AnswerRe: Getting CMYK colors from bmp Pin
Andrew Kirillov31-Aug-05 9:01
Andrew Kirillov31-Aug-05 9:01 
QuestionEnterprise Library Data Block - ExecuteNonQuery method with rows affected as return value Pin
Member 106086631-Aug-05 4:14
Member 106086631-Aug-05 4:14 
GeneralRe: Enterprise Library Data Block - ExecuteNonQuery method with rows affected as return value Pin
Susan Hernandez31-Aug-05 14:19
Susan Hernandez31-Aug-05 14:19 
AnswerRe: Enterprise Library Data Block - ExecuteNonQuery method with rows affected as return value Pin
Susan Hernandez31-Aug-05 14:28
Susan Hernandez31-Aug-05 14:28 
GeneralRe: Enterprise Library Data Block - ExecuteNonQuery method with rows affected as return value Pin
Member 106086631-Aug-05 17:53
Member 106086631-Aug-05 17:53 
AnswerRe: Enterprise Library Data Block - ExecuteNonQuery method with rows affected as return value Pin
Susan Hernandez1-Sep-05 7:50
Susan Hernandez1-Sep-05 7:50 
QuestionUsing c++ dll in c# Pin
JuanAlbertoMD31-Aug-05 4:02
JuanAlbertoMD31-Aug-05 4:02 
AnswerRe: Using c++ dll in c# Pin
Mohamad Al Husseiny31-Aug-05 4:50
Mohamad Al Husseiny31-Aug-05 4:50 
QuestionC# Project Integration Pin
Jim Barber31-Aug-05 3:35
Jim Barber31-Aug-05 3:35 
AnswerRe: C# Project Integration Pin
Judah Gabriel Himango31-Aug-05 6:29
sponsorJudah Gabriel Himango31-Aug-05 6:29 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.