Forum Replies Created

Viewing 15 posts - 226 through 240 (of 4,745 total)

  • RE: Transfer of Logins from 2k to 2K8

    Jake, the sp_help_revlogin will bring passwords across. straight to 2008. I have done it myself many times.

    Perry, master.sys.sql_logins is not available in SQL2000 so Jake will not be able...

  • RE: Transfer of Logins from 2k to 2K8

    Jake Shelton (4/10/2014)


    george sibbald (4/9/2014)


    your question said transfer from sql2000 (2K) to sql2008 (2K8), is that correct?

    SQL IDs are logins authenticated by SQL, i.e. you enter an ID and a...

  • RE: Transfer of Logins from 2k to 2K8

    your question said transfer from sql2000 (2K) to sql2008 (2K8), is that correct?

    SQL IDs are logins authenticated by SQL, i.e. you enter an ID and a password, rather than windows...

  • RE: Transfer of Logins from 2k to 2K8

    I have not tried this so cannot confirm it it works. Even if it does I can say it would randomize SQL authenticated passwords, so it would be of no...

  • RE: How can I stop the trace from continue to run?

    damn this slow network!

  • RE: How can I stop the trace from continue to run?

    find the trace ID (1 is normally the default trace, you can confirm which is yours from where the output is going to)

    --check trace status

    SELECT * FROM :: fn_trace_getinfo(default)

    --stop...

  • RE: Backup Compression Restrictions

    backup compression is not compatible with TDE.

    you can enable it but will get very little if any compression.

  • RE: Malicious files on the sql server found

    Erland Sommarskog (4/2/2014)


    If there is no record of the successful login from the intruder, it is difficult to track.

    But unless sa had a blank password or something else guess at...

  • RE: 98% Memory usage SQL Server 2008 R2

    yes, it requires a SQL (not server) restart to enable it. If this is 64bit probably not set or required but it can be, especially if you see messages about...

  • RE: Malicious files on the sql server found

    I am sure you have already thought of it, but change the sa password or disable sa, turn off xp_cmdshell if you don't need it. By having sysadmin rights they...

  • RE: 98% Memory usage SQL Server 2008 R2

    It depends. SQL might not give up any memory until the OS requests it, if you have lock pages in memory set SQL won't give it up.

    You may have to...

  • RE: change recovery model to bulk logged runtime

    you can do that but its not going to help, log growth will be the same.

    You need to break the delete up into smaller transactions.

  • RE: Auto Growth Settings

    for all databases except master,model,msdb, the databases should be presized so autogrowths are avoided, this is very important on tempdb.

    Having said that, for all databases except master and model (so...

  • RE: Copy DB from Prod to QA

    Ed Wagner (3/31/2014)


    I've found the creation of a script and then restoring from a production backup to be very reliable.

    ScottPletcher (3/31/2014)


    Of course, if it's possible, it's much easier longer-term to...

  • RE: Copy DB from Prod to QA

    New Born DBA (3/31/2014)


    I did run into some problems and I am wondering if someone can tell me what to do.

    I was unable to restore the DB because the DB...

Viewing 15 posts - 226 through 240 (of 4,745 total)