Forum Replies Created

Viewing 15 posts - 43,951 through 43,965 (of 49,571 total)

  • RE: I need a reality check re: compatibility level & locking

    Do you have any access to the database at all? If so, please run the following at regular intervals (every couple hours) and see which values are changing the fastest...

  • RE: Management Studio Not Recognizing Drive

    Direct attached storage, SAN, NAS, network drive?

    Is is a clustered server? If so, is the E drive a dependency of SQL in the cluster admin?

  • RE: indexes ?

    None of the above. You've got database corruption. Please run the following and post the results.

    DBCC CHECKDB(< Database Name > ) WITH NO_INFOMSGS

  • RE: Sql server performance issues

    How many processing cores did the old server have, how many does the new one have?

    SQL Server's max memory setting. Configured under server properties (object explorer in management studio) or...

  • RE: Shrinking the log file

    Ray Mond (10/8/2008)


    Inserting dummy records is no longer necessary in SQL Server 2005, as shown in the example. SQL Server handles that for you when you attempt to shrink...

  • RE: FTP problem

    Please don't cross post. It just wastes people's time and fragments replies.

    No replies to this thread please. Direct replies to:

    http://www.sqlservercentral.com/Forums/Topic582765-148-1.aspx

  • RE: Sql server performance issues

    What are the specs of the two servers (memory, disk)?

    What's the max memory setting on the new server?

  • RE: DBCC shrinkfile

    If the fragmentation is low (< 30%) then reorganise instead of rebuilding. If you can, switch the DB into Bulk logged recovery for the duration of the rebuild. Index rebuilds...

  • RE: Changing sql keywords to lower or upper

    The fastest way would be to buy a copy of SQL Refactor (from RedGate). Otherwise you're going to be spending hours doing replaces of the various keywords and fixing any...

  • RE: Sql server performance issues

    Not enough information to say anything useful.

    What were the specs of the old server. What OS, what version of SQL?

    What are the specs of the new server. What OS, what...

  • RE: Query Tuning in TSQL

    TheSQLGuru (10/8/2008)


    1) Can anyone give me some justifications for the apparent agreement that table variables should be used for 100 rows??

    I use it as a rough thumb-suck of...

  • RE: Changing sql keywords to lower or upper

    Lynn Pettis (10/8/2008)


    I have to deal with the same thing where I work. If I need to modify a procedure, that is when I make any changes to formatting...

  • RE: Changing sql keywords to lower or upper

    Dugi (10/8/2008)


    very easy ...CTRL+H then you have the options Find What = select ...Replace with: SELECT! then Find Next and you will find all them and if you want...

  • RE: sqlserver 2005 Express

    Is there a chance that this DB ever was published in the past (transactional replication)? Could it have been restored/moved from a server where there was replication?

  • RE: Need to created table with 2000 columns in sql server 2005

    SQL 2008 allows 30000 columns if a table is 'wide'. A wide table is one that contains a set of sparse columns (defined as a columnset, see Books Online for...

Viewing 15 posts - 43,951 through 43,965 (of 49,571 total)