Re: SQL 2005 Express setup
- From: Ekrem Önsoy <ekrem@xxxxxxxxxxxx>
- Date: Thu, 1 May 2008 10:48:53 +0300
Because SQL Server would create a Login for Local Administrators and add this Login to the System Administrator "sysadmin" role. So, members of this role can perform any task against that SQL Server Instance.
You should give Logins \ Users permissions only what they need. However, if you want your Login to be a System Administrator, then you should log in to your SQL Server Instance as a System Administrator and add your own Login to the sysadmin Fixed Server Role.
You can use the following command to add your Login to the "sysadmin" server role.
EXEC master..sp_addsrvrolemember @loginame = N'Test_Login', @rolename = N'sysadmin'
Or, you can use SSMSE to perform this. Login to your SQL Server Instance as a System Administrator. Go to Security node and expand it. Go to properties of your Login from the Logins node and from the Server Roles, assign your Login to this role.
P.S.
You should be using a Login which is a member of the sysadmin role to perform this task.
--
Ekrem Önsoy
"Ac" <Ac@xxxxxxxxxxxxxxxxxxxxxxxxx> wrote in message news:04E3B8DC-2E02-4790-9A8C-AFAFCF49C1E3@xxxxxxxxxxxxxxxx
Thank you very much. It works well!
I installed the Microsoft SQL Server Management Studio Express as an
administrator in my computer. However, I would like to use the SQL Server
2005 Express on my own login. If I used my own login, I could connect to the
database, but could not create a new database (new database for my project),
the system stopped me because I did not have the permission. Then, I login in
as an administrator to my local machine and created a new table, it worked
well.
Which steps I set up wrong that I could not use my own login? Thanks again!
"Ekrem Önsoy" wrote:
There is no a GUI coming with SQL Server 2005 Express Edition. You can check
out if your SQL Server service is running or not by using SQL Server
Configuration Manager or Services MMC.
You can download the GUI' s limited (but for free) version (which is SQL
Server Management Studio Express) from the following link:
http://www.microsoft.com/Downloads/details.aspx?familyid=C243A5AE-4BD1-4E3D-94B8-5A0F62BF7796&displaylang=en
--
Ekrem Önsoy
"Ac" <Ac@xxxxxxxxxxxxxxxxxxxxxxxxx> wrote in message
news:F72D38A4-A9AE-470A-96BB-417AC26D3E75@xxxxxxxxxxxxxxxx
> Hi ,
>
> I am new for SQL 2005 Express version, and I have downloaded the SQL > 2005
> Express Edition. After the download, I try to open the program, the > steps:
> Start/All programs/Microsoft SQL Server 2005, after that I only have > two
> choices (sub menu): Configuration Tools and Documentation and > Tutorials,
> but
> do not have the SQL 2005 Express Edition as a sub menu. What do I do
> wrong? I
> have a Window 2003. Could you please help me? Thanks!
.
- Follow-Ups:
- Re: SQL 2005 Express setup
- From: Ac
- Re: SQL 2005 Express setup
- References:
- Re: SQL 2005 Express setup
- From: Ac
- Re: SQL 2005 Express setup
- Prev by Date: During sql setup SSIS Failed, How to Add it ?
- Next by Date: Re: During sql setup SSIS Failed, How to Add it ?
- Previous by thread: Re: SQL 2005 Express setup
- Next by thread: Re: SQL 2005 Express setup
- Index(es):
Relevant Pages
|