Forum Replies Created

Viewing 15 posts - 1 through 15 (of 270 total)

  • RE: Schedule the SQL Server Database Backup

    If you are using a full version sql server use the sql server agent to schedule the backup.

    If you are using sql express you will nt be able to use...

  • RE: SQL Server Services won't start

    I would force start sql server and try re-running the alter database statements with the correct path and filename I don't see why it wouldn't work.

    hth

    David

  • RE: SQL Server Services won't start

    Well in the script you posted you did not specify the actual filenames just the logical filenames and the directories in which they would reside force sql server to start...

  • RE: SQL Server Services won't start

    Sorry i may be being silly but is that exactly the code you used?

    Shouldn't it be e.g depending on the filenames of the files moved in the case of msdb...

  • RE: SQL Server Services won't start

    The service account under which sql server is running just doesn't have enough writes on the directories to which you moved the files.

    If you just give the service account full...

  • RE: SQL Agent job not running simple SSIS package

    Cannot find SSPI context is probably related to the SPN(service principal name) for the SQL Server not being set correctly.

    You can check this using adsiedit but intsead of explaining it...

  • RE: Regarding Lock

    There's a few ways but if you want to capture the lock escalation etc on a particular table then you could use sql profiler.

    I would not use ths to...

  • RE: Need to restore MSDB with only the ldf/mdf files

    You can detach msdb by using trace flag 3608 but obvioulsy this means shutting down your server and restarting it with this trace flag.

    If you can't recover msdb you can...

  • RE: [Problem]Restore differentail backup

    Marek Powichrowski (11/7/2007)


    David Scotland (11/7/2007)


    Have you restored the last full backup first with norecovery?

    hth

    David

    No, "with recovery".

    So I must restore full backup with "no recovery" and next diff with "with...

  • RE: [Problem]Restore differentail backup

    Have you restored the last full backup first with norecovery?

    hth

    David

  • RE: Run DOS command from SQL

    You could do this using xp_cmdshell this is disabled by deafult on SQL Server 2005 on new installs so you would need to turn it on before you could use...

  • RE: Web Data Adminstrator

    There is another open source web admin tool for sql server which looks just like the good old enterprise manager. I just gave a link to a blog since its...

  • RE: Database Maintenance Plan

    If you need to reduce the size of the log after rebuilding the indexes then I would use dbcc shrinkfile and put this as the final step in your job...

  • RE: Database Maintenance Plan

    I would personally turn off auto shrink as its only real use is on development machines where space is at a premium. You can find numerous articles on why its bad...

  • RE: License question

    Licensing in 2005 is done on a trust basis so it will use all 4 processors but you will obvioulsy be in violation of the license. Remember though that MS...

Viewing 15 posts - 1 through 15 (of 270 total)