Forum Replies Created

Viewing 15 posts - 2,836 through 2,850 (of 6,679 total)

  • RE: Which is Best to use, #Temp Table or @Table Variable?

    SGT_squeequal (7/20/2012)


    Depending on what your doing what about using a CTE?

    CTE's are not replacements for temp tables or table variables. A CTE will be incorporated into the actual query...

  • RE: Defragging Drives on your SQL Server

    As a one-time process where there is identified fragmentation issues on the drive - I would take the services offline, perform the defrag and bring everything back up.

    As a scheduled...

  • RE: Litespeed full db backup error

    This error indicates an issue with the network while backing up:

    995(The I/O operation has been aborted because of either a thread exit or an application request.).

    You see this error...

  • RE: common table expressions

    I use CTE's to organize my queries and move derived tables up to the top of the query. In other cases, I will use a CTE to include row_number,...

  • RE: Why is syntax different?

    Check the ANSI_PADDING settings on the database, the column in question and the connection between the 2 different systems.

    I am betting you will find a difference between the 2 which...

  • RE: Updating Stats on Non-Indexed Data

    Update Statistics has an options to update only column based statistics, index based statistics or both. Please refer to BOL for exact syntax.

    Note: sp_updatestats will only update statistics that...

  • RE: Backup (sql 2005), restore (sql 2008) -- anything else to do?

    GilaMonster (7/8/2012)


    It got fixed in SQL 2005, in 2005 SP1, in 2005 SP2, in 2005 SP3 and in 2005 SP4. Basically most of the issues were fixed for SQL2005 RTM,...

  • RE: Backup (sql 2005), restore (sql 2008) -- anything else to do?

    GilaMonster (7/8/2012)


    Coming from 2005, probably not. If you'd been coming from SQL 2000 I would have said absolutely yes.

    I keep hearing that they have fixed this issue - and still...

  • RE: It's the Journey...

    I started my career as a computer operator for the Army. Left the Army and went to work as a computer operator and realized I wanted to move into...

  • RE: Revert Last Delete Statement on in SQL Mgmt Studio

    GSquared (7/5/2012)


    Whenever I have to modify data in production, I start with "begin transaction" and end with "rollback", run the script, use OUTPUT to check the results, and, when I'm...

  • RE: I want to move a database server to server without using Backup and restore?

    AAKR (7/5/2012)


    Thank you all of you guys.

    * copy files from server to server it takes more time...

    I heard an option with using of Sanpshot replication we can create the database.

    any...

  • RE: Where to View Job History??

    Be aware that the option to purge data after a set time in the agent properties is a one-time manual process.

    That is, if you uncheck the option to manage the...

  • RE: last day of any year

    The question I have is how are you going to use this? If you are using this in a where clause it is most likely a better option to...

  • RE: UDF

    satishthota (6/29/2012)


    I need a query without split function

    Is the requirement to remove the UDF something that is mandated by company policy? Or, are you looking at the function as...

  • RE: Database Files growth

    How are you checking the database size?

    If you are right-clicking the database and selecting properties to see the database size, that size includes the size of the transaction log and...

Viewing 15 posts - 2,836 through 2,850 (of 6,679 total)