Viewing 15 posts - 346 through 360 (of 463 total)
Try starting sql server from the command line not as a service with the -c option
sqlservr -c.
If it still doesn't start, start it with -e option and provide the...
June 28, 2004 at 8:47 am
can you run sp_helpuser from query analyzer and see what permissions the user has ?
Also, if you restored the database from a backup, you might want to run
sp_change_users-login 'auto_fix',username
June 24, 2004 at 3:07 pm
Can you try creating another user and grant him db_owner permission and try with that user.
can you verify the registration property my right clicking your SQL server and verify that the...
June 24, 2004 at 2:22 pm
If a user has db_owner permission, you shouldn't have any problems. Can you post the SQL and the error message. Are you trying to access a table in another database ?
June 24, 2004 at 1:13 pm
Can you verify the file you are using is the right file ?
Also just try the following
restore database database_name from disk = '' with replace
June 24, 2004 at 9:48 am
can you run a trace on DB2 Side and see what is exactly being executed ? Below is a KB article which might not be related but does reference an...
June 22, 2004 at 3:28 pm
I have never used Arcserver but can you try restoring the backup file to the filesystem and then try to restore ?
June 21, 2004 at 11:05 am
1) User should be a member of db_ddladmin to create, update procedure.
2) If you want to give execute permissions to all stored procedures in a database to a user, you can...
June 21, 2004 at 11:00 am
F.Y.I.
SELECT * FROM OPENROWSET('SQLOLEDB', 'server_name';'uid';'pwd', 'SELECT * FROM master..sysdatabases')
June 18, 2004 at 12:27 pm
you cannot separate the users with a comma. But you can open a cursor and go through each and every row one at a time.
June 18, 2004 at 12:17 pm
You can set the DEADLOCK_PRIORITY to LOW for T1 so that it does not block T2.
June 18, 2004 at 12:13 pm
Ronnie,
I believe below is what might have happened in your case. SQL Server manages security on two layers, logins and users. A login grants you access in the server but...
June 18, 2004 at 11:59 am
Any user is a member of the public role in the database. The public role is granted access to many of the system tables.But You might want to be careful in...
June 18, 2004 at 11:51 am
Can you give more details ? Do you mean you are getting errors with cross database ownership ?
June 18, 2004 at 11:44 am
Are you looking to change the default database for the login ? if yes then, just double-click the login in Enterprise Manager and at the bottom it says Defaults. You...
June 18, 2004 at 9:32 am
Viewing 15 posts - 346 through 360 (of 463 total)