Forum Replies Created

Viewing 15 posts - 3,601 through 3,615 (of 4,745 total)

  • RE: Suspend log shipping restore for full backup on standby

    sounds like you are tying yourself in knots trying to acheive this, which is always risky.

    This might be one of those cases where looking into a third party tool which...

    ---------------------------------------------------------------------

  • RE: Suspend log shipping restore for full backup on standby

    Can you take the hit of the full backup at weekends only and then go for differential backups during the week, or filegroup backups if you have more than one...

    ---------------------------------------------------------------------

  • RE: disable windows authentication

    you cannot disable windows authentication, only sql authentication, which then precludes using the 'sa' account.

    closest you can come to it is set up a domain account, use EM to alter...

    ---------------------------------------------------------------------

  • RE: SA Password change

    hydbadrose (6/4/2009)


    Hello,

    I have a question regarding 'SA' password in sql 2000. Is is possible to change the SA password without having to reschedule the jobs on a sql 2000 server?

    yes

    Also,...

    ---------------------------------------------------------------------

  • RE: Bizarre transaction log growth during reindex

    A Joy (6/4/2009)


    This should all occur on the tempdb (ie no file growth of any kind on the database itself as there are only reads occuring) until the write back...

    ---------------------------------------------------------------------

  • RE: Restoring a database

    That should only happen with SQL authenticated ids and restoring onto a different SQL instance. I presume this is your scenario.

    use sp_change_users_login 'update_one','username','login' to tie the user up to its...

    ---------------------------------------------------------------------

  • RE: Setup Permissions New SQLServer 2005

    Books OnLine will be your best resource here.

    search on these keywords:

    authentication modes

    create login

    create user

    fixed database roles

    fixed server roles

    sp_addrolemember

    grant

    USe a windows authenticated ID if you can. SQL authenticated ids have improved...

    ---------------------------------------------------------------------

  • RE: Bizarre transaction log growth during reindex

    the leaf node of the clustered index is the actual data, so when you rebuild the clustered index you are effectively moving the table data around. Hence the large amount...

    ---------------------------------------------------------------------

  • RE: Installation and system database directory

    In a nutshell Its not worth the effort.

    To expand on that:

    mssqlsystemresource you cannot move anyway in 2008

    master database has very little updating, so no performance requirement to separate logs

    ditto for...

    ---------------------------------------------------------------------

  • RE: SQL 2000 maintenance plan jobs hang on Step 1

    If you can afford the risk of it not working might be worth trying just restarting SQL, would be interesting to know if thats enough to clear the problem.

    ---------------------------------------------------------------------

  • RE: Get the DB Owner through T-SQL

    This gives the owner of the database

    select suser_sname(sid),name from master..sysdatabases

    just add the relevant where clause for a particular database

    Retrieving who originally created the database (if different) I dont think...

    ---------------------------------------------------------------------

  • RE: Does DB_DataWriter intrinsically have all the permissions of DB_DataReader?

    a quick test shows db_datawriter does not have select permissions.

    ---------------------------------------------------------------------

  • RE: File\Filegroup Backup and Restore

    Gursethi, nice one, I did not realise that would work onto a new database.

    ---------------------------------------------------------------------

  • RE: Implementing and Monitoring Log shipping

    My apologies , there is an error in the above post. You cannot use express edition as a logshipping monitor as it does not come with SQLAgent.

    I was thinking mirror...

    ---------------------------------------------------------------------

  • RE: Move multiple databases from SQL 2000 to new SQL 2005 server

    My script for detach/attach in SQL2005, doesn't work for SQL2000, so I thought there might be some with the knowledge to multi detach/attach the databases

    what error do you get? the...

    ---------------------------------------------------------------------

Viewing 15 posts - 3,601 through 3,615 (of 4,745 total)