Forum Replies Created

Viewing 15 posts - 346 through 360 (of 1,098 total)

  • RE: Replication

    Wich type of replication? Transactional, merge?

    Try running sp_subscription_cleanup. Check for parameters in BOL.

  • RE: How to schedual DB integrity checking seperately

    You can put your DBCC CHECKDB commands in separate jobs one for each db you need to check.

    In 2000 the complete excecution is logged on SQL log, with the message...

  • RE: Init cap

    Right Frank.

    It was my mistake. Pay no atention to my answer.

  • RE: Init cap

    Sorry for the mess, I meant this:

    DROP TABLE myName

    GO

    CREATE TABLE myName(myn char(10))

    go

    INSERT INTO myName (myn) VALUES('alfred')

    INSERT INTO myName (myn) VALUES('Alfred')

    INSERT INTO myName (myn) VALUES('berta')

    INSERT INTO myName (myn) VALUES('Frank')

    INSERT INTO myName...

  • RE: Init cap

    Another way could be this one, but don't know if it is cost efective:

    DROP TABLE myNameGOCREATE TABLE myName(myn char(10))goINSERT INTO myName (myn) VALUES('alfred')INSERT INTO myName (myn) VALUES('Alfred')INSERT INTO myName (myn)...

  • RE: Backing up And Restore rplicated DBs

    Wich type of replication do you have? your Backup strategy will change depending the type of replication.

    For transactional check for the option 'sync with backup' in BOL. This will keep...

  • RE: Recovering Suspected database

    I had to do it once. I used he following commands, maybe they can help.

    sp_resetstatus 'dbname'

    dbcc dbrecover (dbname)

    and DBCC Rebuild_log (dbaname) bacause my log was damaged.

  • RE: Backup cannot be performed on this DB

    With simple recovery mode, only full backups are possible.

    When failure, you will have to restore the last full backup you have.

    With system databases this is ok. I would suggest to...

  • RE: Moving Replication to New Server Hardware

    If the server name is the same, then you can backup all your databases, and restore them in the new server.

    Check the expired subscription period, because you might need to...

  • RE: List Active Users

    You can execute sp_who or sp_who2 with it is more complete.

    Every time you need to imitate something EM does in T-SQL it is good to execute a trace with profiler,...

  • RE: Replication Error

    did you run a checkdb in database 'Iowa_Vet'?

    Did it return any errors?

  • RE: Synchronizing Changed Schema

    You can run sp_repladdcolumn to add a new

    column of an already published table.

    check the parameters in BOL, and allow NULLs in the new column.

  • RE: not able to create linked server since remote serv

    What error is showing?

    Is it server2 configured for remote access?

  • RE: Taskpad shows 0 space in DB

    The Task Pad view starting failing in my EM after my DB was very big.

    Now my db in 300 Gb and most of the cases EM shows me an error...

  • RE: SQL Server Logs

    SQL server uses an error log file each time it reboots.

    You can use a new error log file by executing sp_cycle_errorlog.

Viewing 15 posts - 346 through 360 (of 1,098 total)