Forum Replies Created

Viewing 15 posts - 1,396 through 1,410 (of 2,897 total)

  • RE: Incorrect syntax near '('.

    CirquedeSQLeil (5/21/2010)


    Hmmm, you are short a parameter (this function requires four parameters and you are passing in three parameters). Maybe that is causing the difference (but shouldn't work on...

  • RE: Incorrect syntax near '('.

    YES, BOL has a typo, but it passes a syntax check on one server, but not the other.

    If I use my own DB and table, same problem. Results on one,...

  • RE: SQL Server DBA policies

    Here's a quick guide. I typed it in 4 minutes, so it's just the basic idea.

    1) A "Change Request" is created, specifying modifications needed

    2) Developers make changes in Development area...

  • RE: system tables in sql 2005

    You can defragment (rebuild or reorg) the indexes on tables for better performance.

    There are lots of posts and articles about this topic you can search for.

  • RE: SQL Backup

    It sounds that your logic is correct. Could there be a more recent Full backup ? Maybe a scheduled Maint plan you forgot about.

  • RE: Backup vs Detach migrating large databases (from 2000 to 2005)

    muten79 (5/20/2010)


    By the way, how long could it take to do the backup?

    Does this question mean that you are not taking regular Full SQL backups already ? If not,...

  • RE: Maintenance Plan Best Practice

    Jeffrey Irish (5/20/2010)


    So, unless I am mistaken, Rebuilding only would be the best option as that is the same as dropping and recreating the Index. However, there are some Indexes...

  • RE: Related Indexes in Different File Groups

    I think my performance issue is from another cause.

    I'm doing an update to a master table with 80 million rows, based on a join to a work...

  • RE: Related Indexes in Different File Groups

    They were separated out initially for performance when the database was on a stand alone server with separate internal physical disks. After migrating to VMWare, the setup was unchanged and...

  • RE: Reducing size of database

    Leonard 40050 (5/20/2010)


    There was about 5GB of data in the tables that I dropped so I assumed the size of the .mdf file in the 'Data' directory would be reduced.

    It...

  • RE: size of transaction log

    Do you have replication transactions that have not been published to a subscriber ?

  • RE: Deleted store procedure

    homebrew01 (5/19/2010)


    Default trace doesn't capture Stored Proc create & drop ... according to my test just now. The default trace never seems to have what I need, so I set...

  • RE: Need help on dynamic SQL

    It might help to say what the error is

    I think you need to declare @maxno inside the dynamic sql

  • RE: Backup vs Detach migrating large databases (from 2000 to 2005)

    I would take a FULL backup as a precaution, then use detach/attach. It's probably faster since you bypass the backup & restore steps and only need to do the file...

  • RE: Transferring data from MySql to MS SQL Server

    Not directly relevant, but when converting MySQL to SQLServer, I used SQL_Maestro as an interface to dump out the tables for import into SQL .... FWIW

Viewing 15 posts - 1,396 through 1,410 (of 2,897 total)