Forum Replies Created

Viewing 15 posts - 931 through 945 (of 1,097 total)

  • RE: SQL BackUp?

    Well in fact yes. You could create more data files with new filegroups for the tables that you want to backup, and then backup the filegroup

  • RE: Setting multiple startup trace options

    you can use "sqlservr -T1204 -T257"

  • RE: DTS Packages and Scheduling them as jobs

    I think the problem is that when the DTS package runs within a job is does with the security context of the SQL Server Agent Logon account. You should use...

  • RE: SQLServerAgent Error 14258

    Strange...the antivirus is in the same box as the sql server?. If so, try to start the sql agent with the antivirus disabled.

  • RE: Replication performance

    I would use replication store procedures and mcall them to avoid overhead in the updates. Also could create severals publication with different articles, and schedule the replication to avoid concurrent...

  • RE: Backup databases from sp2 to another sp3 server

    If your non systems databases are not part of a replication then you want have any problems.

    But you can't do that with your systems db.

    I would copy only the user...

  • RE: dump log to tape

    To extract it from tape restore the log from the tape with T-sql commands.

  • RE: Running forever on creating a trigger

    Any errors in the SQL Agent Log. Try running a trace while you are creating the trigger.

    The index that you create was on a published table???

  • RE: Maintenance Plan's Failing

    Is seems that the problem is on the T-sql inside the plan. Check what the plan does and check any difference with other target server. If you are acceding the...

  • RE: SQLserveragent SQLServer Error: 1115

    Is seems like an win 2000 login problem. Why don't you create another user in your server with admin rights and use that login for your services. Try rebooting the...

  • RE: Cannot Backup Tran Log

    Did you try :

    Backup Log LogName with Truncate_Only

    This flushes all the commited transactions to the data files, and release some space from the log. After this you should backup...

  • RE: Difficulty in recovering differential backup file

    From what you said I think that you restore the full with norecovery and tried to restore the differential with recovery.

    You shouldn't have any error. Can you post the t-sql...

  • RE: Bidirectional Replication - Use Merge or Transacti

    We have once server wich replcates to other 74 servers, and also they all replicate to the master server. We use transactional replication and never had big problems. But i...

  • RE: [SQL STATE 4200](Error 3013)

    Wich tape options are you giving to the Backup statement?

  • RE: Deleting records...HELP

    You could create a job to be run every day to check for the condition, or if inserts, updates or deletes are common in the db, create a trigger to...

Viewing 15 posts - 931 through 945 (of 1,097 total)