Forum Replies Created

Viewing 15 posts - 661 through 675 (of 1,539 total)

  • RE: Tempdb Full

    Vee (7/22/2009)


    Hi Ps,

    Is it sql server 2000 or 2005. In 2005 we have better ways of monitoring the tempdb usage.

    Its 2005 enterprise edition. I need to find out what's causing...



    Pradeep Singh

  • RE: SQL Trace and Transaction Logs

    psemenye (7/21/2009)


    Hi guys,

    I need some help in understanding SQL transaction logs. I want to find out whether certain information was put into a database using insert or update statements (basically...



    Pradeep Singh

  • RE: Where are SQL 2000 Jobs stored on Hard DIsk?

    pete (7/21/2009)


    Thanks but I am still having issues. I have a back up of MSDB from the other sql installation which contains the job info. So I try...



    Pradeep Singh

  • RE: error

    ramyours2003 (7/21/2009)


    backup job failed through maintainence plan due to sql maint.exe failed how to solve this?

    The information you've provided is so trimmed that it's hard to provide some...



    Pradeep Singh

  • RE: SQL Express - Auto BackUp - changing file name each time

    declare @BackupDest varchar(100)

    set @BackupDest = 'C:\MyDB\MyDB_' + convert(varchar,getdate(),112)+'.BAK'

    BACKUP DATABASE MyDB

    TO DISK = @BackupDest WITH INIT

    A trimmed version of the same code 😉



    Pradeep Singh

  • RE: error

    ramyours2003 (7/21/2009)


    how to rectify the error sql maint.exe failed

    There can be numerous reasons for a maintainance plan to fail depending on the type of plan you have. If you provide...



    Pradeep Singh

  • RE: Database Backup Failing, not sure why

    Cant think of anything as of now as nothing is in the error log.. Can you post the entire T-SQL code of the maintainence plan so that others can have...



    Pradeep Singh

  • RE: how to reduce tempdb size in production in ms sql

    Look out for DBCC SHRINKDATABASE OR DBCC SHRINKFILE in BOL.

    In most of the cases, restart is the only option.....



    Pradeep Singh

  • RE: Database Backup Failing, not sure why

    Can you see the backup file even after the job fails? If yes, can u verify if it's correct? If no, can u check disk space? May be its failing...



    Pradeep Singh

  • RE: How to restore system?

    We dont take entire disk's image. Instead, we backup all system databases including resource database and user databases. If we need to revert back, we'll use these backups to revert...



    Pradeep Singh

  • RE: Server Database Backup

    Thanks Gail 🙂



    Pradeep Singh

  • RE: when specific port number is assigned for SQL SERVER,How to force the User should connect the server using the specific port number.

    vetri (7/20/2009)


    Hi all,

    I changed the Default port number of SQL SERVER to some specific port number now i am able to connect the server using ,,Also only the is...



    Pradeep Singh

  • RE: Server Database Backup

    vaibhav.a (7/20/2009)


    No, actually i want to take it from my local machine only........we are connected to server.........without altering any settings at the server side......

    You can take database backup from anywhere(client...



    Pradeep Singh

  • RE: Server Database Backup

    vaibhav.a (7/20/2009)


    I want to take backup of my server database at my local machine........ how can i do this......

    Thanks in advance

    By running BACKUP DATABASE

    i'd suggest you read BOL on how...



    Pradeep Singh

  • RE: Server Database Backup

    EDIT - Double Post.



    Pradeep Singh

Viewing 15 posts - 661 through 675 (of 1,539 total)