Forum Replies Created

Viewing 12 posts - 46 through 57 (of 57 total)

  • RE: grant read access to logshipped database

    ReadOnly Databases cannot be modified. Adding access to the database means modifying the database, which is not possible.

    there are 2 ways(that i can think of), grant the user access in...

  • RE: shrinking log files

    BACKUP LOG GLReporting WITH TRUNCATE_ONLY

    This will delete all your transaction log entries. if you are maintaining Transaction log backups, the chain will no longer be useful, in case of a...

  • RE: Shrink and Backup

    The backup size will be 300GB + Required Transaction log + DBInformation(approx). It will not include the 200GB free space in the database files.

    However, when you restore the backup, the...

  • RE: Query Duplicates

    This approach seems correct. the NumOfOccurences always showing 1 means there are no duplicate names in your table. try and insert 2 duplicate values(in dev environment) and then re-run the...

  • RE: Transaction log size with moving large amounts of data

    hi,

    after the transaction, issue a checkpoint and wait for a minute or 2 and then start the second batch.

    Regards

  • RE: Conversion failed when converting datetime from character string.

    This should work

    SELECT CAST(@LineDate AS DATETIME), convert(datetime, convert(varchar,@date,101),101 )

    (tweak the 101 to the kind of format you want).

  • RE: Restore System DBs to Another SQL Instance

    dso808 (8/12/2010)


    Hi and thanks so much for your help. Your suggestion sounds like the most feasible solution for our situation. We've also thought of perhaps setting up the...

  • RE: Best Practice for Centrally Managing Backup Jobs (or other maintenance)

    Hi,

    you can have a centralized server for Database Administration, where you can create SSIS package to monitor the job status for every server.

    You can also create a centralized backup strategy,...

  • RE: Restore System DBs to Another SQL Instance

    dso808 (8/11/2010)


    HI and thanks so much for your reply. Yes, this is a very rough way to go about this and it's been a very unpleasant experience. I guess...

  • RE: Cross editions back-restore in sql server 2008

    vishkk47 (8/12/2010)


    Sorry for missing the attachment of error screen. I have attached that now as RestoreError.zip. See in Attachments.

    Please have look at it and let me know your opinion.

    From...

  • RE: what is Copy-Only Backup?

    eng_mgomaa (8/11/2010)


    Copy-only backups are new to SQL Server 2005. They allow a backup of any type to be

    taken without affecting any other backups. Normally, a database backup is recorded in...

  • RE: what is Copy-Only Backup?

    hi Jason,

    it will be in the backupset table.

    however, the is_copy_only field will be 1, which confirms it is a copy_only backup.

Viewing 12 posts - 46 through 57 (of 57 total)