Forum Replies Created

Viewing 15 posts - 346 through 360 (of 463 total)

  • RE: changing location of SQL Server error logs

    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...

  • RE: Rights to create a view

    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

  • RE: Rights to create a view

    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...

  • RE: Rights to create a view

    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 ?

  • RE: Problem Restoring Database

    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

  • RE: DB2 Linked Server

    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...

  • RE: "SQL State 42000... device error/device offline during Restore

    I have never used Arcserver but can you try restoring the backup file to the filesystem and then try to restore ?

  • RE: User Rights - Help!!

     

    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...

  • RE: List of databases from a remote SQL server?

    F.Y.I.

    SELECT * FROM OPENROWSET('SQLOLEDB', 'server_name';'uid';'pwd', 'SELECT * FROM master..sysdatabases')

  • RE: Moving Security/SPs from One Server To Another

    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.

  • RE: help! concurrency problem

    You can set the DEADLOCK_PRIORITY to LOW for T1 so that it does not block T2.

  • RE: Moving Security/SPs from One Server To Another

    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...

  • RE: Viewing system objects.

    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...

  • RE: Chain linkage mismatch.

    Can you give more details ? Do you mean you are getting errors with cross database ownership ?

  • RE: Default database login error 4064

    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...

Viewing 15 posts - 346 through 360 (of 463 total)