Forum Replies Created

Viewing 15 posts - 1,156 through 1,170 (of 2,897 total)

  • RE: Searching Multiple Trace Files ?

    Lowell (11/30/2010)


    homebrew01 (11/30/2010)


    Lowell, I tweaked that a bit for my situation, and it worked quite nicely ... Thanks !

    sweet ! i was hoping to fiddle with that old thing after...

  • RE: Searching Multiple Trace Files ?

    Lowell, I tweaked that a bit for my situation, and it worked quite nicely ... Thanks !

  • RE: Slow query performance after upgrading from SQL2000

    We had performance issues after upgrading to 2005. Some of them were resolved after closely looking at the joins and finding we needed to modify or add the CONVERT functions...

  • RE: Automate "Generate Scripts" in SQL Job

    I use this to script all the objects to files. As I recall, the .exe is not in 2005, so I copied it, and maybe a couple others from my...

  • RE: Granting rights to a user for all DB's

    A bit impatient ? (You could have done it manually by now)

    Create a Windows secirity group through AD, then put the user(s) in that group, then give that group...

  • RE: unable to shrink log file

    GilaMonster (11/21/2010)


    To anyone still reading (and not running screaming), do not ever do that. The log is not an optional piece of the database, SQL cannot always recreate it if...

  • RE: Datbase is in Suspect mode

    Sqlsavy (11/19/2010)


    Unfortunately a junior DBA who got access to the server disabled the backup for some reason and forgot to enable....

    When I have a job that I want disabled for...

  • RE: DB Status?

    Here's a query that you can run to check on when each database was last backed up and the recovery model.

    I used this when I started at a new job...

  • RE: Best practice for full log file during schema expansion?

    Can it be varchar instead of char ?

    Look at how much space the table is currently using to get an idea of the impact.

    Are the database and log files on...

  • RE: how to backup and restore a single table from server 2 server

    Replication is a good option. Another option is use a linked server

    truncate table ServerB.DatabaseB..TableB

    insert into ServerB.DatabaseB..TableB

    select * from DatabaseA..tableA

    Why is SSIS not recommended at your company ?

  • RE: SQL 2000 db on SQL 2005 in compatibility mode 80

    One fallback position could be to take backups when they are still on the 2000 server, just before restoring to 2005. I assume you will do this anyway. In an...

  • RE: Duplicate Index Performance

    It's possible the indexes you want to delete are hard-coded as index hints. I use something like this to look for character strings in stored procedures

    exec sp_MSforeachdb_db 'use [?] select...

  • RE: Database Stuck in Restoring!!

    Not sure if this applies in this case, but I found this script somewhere ... (probably SSC) and have used it to see how far along a backup or restore...

  • RE: Selective Index Maintenance

    I splice frequent t-log backups into my defragmentation routines to prevent large .trn file growth.

  • RE: Ways to backup restore Very Large Database (VLDB)

    muthukkumaran (11/9/2010)


    rajanishvibha 3763 (11/9/2010)


    Hi Sir

    what new in sql server 2005 for backup

    In this forum --> go SQL Server 2005 --> Backups-->Add Topic

    -->then finally ask your queries

    And try to be a...

Viewing 15 posts - 1,156 through 1,170 (of 2,897 total)