Forum Replies Created

Viewing 15 posts - 451 through 465 (of 700 total)

  • RE: What the? Where did THAT go?

    They probably asked around and realized that a lot of folks, like me, never used the object search. I played with it a few times back in 2001, then...

  • RE: Moving Data Centers

    I recently lead the movement of the databases for our 10TB application from one datacenter to another, and we used the same process mentioned above:

    - Ship backup tapes to...

  • RE: dates returned from SQL query are being subtracted in Excel

    Replied too quick 😛

  • RE: Issues after killing a backup using LiteSpeed

    Ouch! Sorry to hear it. We've had that happen twice with LiteSpeed x64 edition on SQL 2005 enterprise.

    The only solution was to restart the instance. The hung...

  • RE: Partitioning Question

    First, partitions are open-ended. When using RANGE RIGHT, the first partition holds all data less than the first value listed. In this case, the first partition is for...

  • RE: Last stats update

    Check BOL for the STATS_DATE ( table_id , index_id ) function.

    -Eddie

  • RE: No Business Logic in the Data Layer....

    What that often means coming out of the mouths of developers is that they want to use some code-generators and write zero T-SQL.

    Data access will be either all...

  • RE: Partitioned Tables in SQL Server 2005

    You have a couple options to take an existing non-partitioned table and convert it to an partitioned table.

    Hint: see BOL, Look for: "partitioned tables [SQL Server], modifying" in the index....

  • RE: MCITP

    Re: not getting 2005 certs waiting for 2008 certs.

    From what I've seen on SQL 2008 so far, it's basically SQL 2005 plus more new stuff. (I'm just...

  • RE: SQL Server Management Studio (No Results Beep)

    Tools -> Options... -> Click 'Query Results' -> in the right pane, check 'Play the Windows default beep when a query batch completes'

  • RE: Column with identity property

    SELECT OBJECT_NAME(object_id) AS TableName, name AS ColumnName

    FROM sys.columns

    WHERE object_id = OBJECT_ID('YourTableNameGoesHere') AND is_identity = 1

  • RE: SQL Server Caching

    dots67 (10/18/2007)


    Results can not be cached as underlying data changes

    Regarding data (buffer cache) you can not control what is cached (the minor exception is PINTABLE)

    PINTABLE is ignored in SQL Server...

  • RE: Advice for a newbie

    Central Indiana (I live and work in Indy) is actually pretty fertile ground for SQL Server DBAs. Many places don't post ads on Monster because (and I've been through...

  • RE: Performance Tuning Check List

    Tracing should be used to identify specific reasons for specific problems. It comes later in the tuning process. You first need to answer the questions "Is there a...

  • RE: Retriving username ,who is executing the query

    SELECT login_name FROM sys.dm_exec_sessions WHERE session_id = @@spid

    Check BOL for both sys.dm_exec_sessions and sys.dm_exec_requests to see what other useful info is available. (host_name, etc.)

    -Eddie

Viewing 15 posts - 451 through 465 (of 700 total)