Forum Replies Created

Viewing 15 posts - 331 through 345 (of 1,098 total)

  • RE: Conditional Backup - TSQL statement

    Or you can also specify the RETAINDAYS or EXPIREDATE parameters in the backup syntax, to let sql overwrite the backups or not.

  • RE: Remote and Central Site Sync

    I don't think you can do it with SQL replication, only with snapshot. Because Transactional replication will save the changes into the SQL Log file, and merge replication saves changes...

  • RE: Remote and Central Site Sync

    No, you can't. You must have a conecction. It can be a Dial up connection.

    Unless you manually transfer the changes by CD, diskette or wathever.

  • RE: Copying backup causes periodic failure

    Are the files taken by a running backup job?

    Are you then copying the files to a tape drive?

  • RE: Gurus Need your help!!!!

    The easiest way for me, but maybe not the best in performance could be to use a couple of cursors:

    CREATE TABLE #1

    (Name VARCHAR(20),

    SAl INT)

    GO

    INSERT INTO #1 VALUES ('Tom', 20)

    GO

    INSERT INTO...

  • RE: Publish To Self (Same dB Subscriber)???

    You can publish and subscribe in the the same server, but not in the same databases.

    You can use that between two different databases...

  • RE: dynamic filter synchronization problem

    That shouldn't happen. There must be a problem with the filter you specify.

    Can you post the function you use to create the filter?

  • RE: Error 3456 could not redo record

    That is the error it shows when trying to attach?

    Check the SQL log to see what it says before dettaching the db when it was in status suspected and please,...

  • RE: xp_sqlagent_proxy_account Error

    Can you post the statement you used?

    Be sure to specify the right domain.

    Also with the values passed specify the 'N' letter before the value.

  • RE: DB last updated

    If you want to know when the db was last changed for example adding a new table you can query the creation date in sysobjects table...but if you mean the...

  • RE: Table backup

    No unless you have that table in a separate file and separate filegroup, allowing you to backup a single file wich contains a single table.

    You can also export the table...

  • RE: I'm Confused

    This QOD is particular because as you can see in the other topic, the correct answer is wrong, because 'None of the above' is the right one.

    But check answers 1...

  • RE: SQL Profiler - filtering out empty columns

    For me the best way to filter is to save the output into a SQL table and then apply T-SQL commands to filter.

    Also is better and faster to save first...

  • RE: SQL Server Agent Error

    If possible run profiler and do the same you did when the Agent failed to know wich command could cause the error.

  • RE: msdb size

    Do you have replication set up?

    Log shipping?

    MAster/Target Servers?

Viewing 15 posts - 331 through 345 (of 1,098 total)