Viewing 15 posts - 451 through 465 (of 700 total)
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...
December 15, 2007 at 2:51 pm
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...
December 15, 2007 at 2:38 pm
Replied too quick 😛
November 14, 2007 at 9:47 am
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...
October 30, 2007 at 2:51 pm
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...
October 30, 2007 at 12:08 pm
Check BOL for the STATS_DATE ( table_id , index_id ) function.
-Eddie
October 25, 2007 at 11:47 am
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...
October 25, 2007 at 11:40 am
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....
October 24, 2007 at 10:42 pm
Tools -> Options... -> Click 'Query Results' -> in the right pane, check 'Play the Windows default beep when a query batch completes'
October 22, 2007 at 8:01 pm
SELECT OBJECT_NAME(object_id) AS TableName, name AS ColumnName
FROM sys.columns
WHERE object_id = OBJECT_ID('YourTableNameGoesHere') AND is_identity = 1
October 22, 2007 at 7:55 pm
dots67 (10/18/2007)
Results can not be cached as underlying data changesRegarding data (buffer cache) you can not control what is cached (the minor exception is PINTABLE)
PINTABLE is ignored in SQL Server...
October 18, 2007 at 8:54 pm
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...
October 18, 2007 at 8:47 pm
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...
October 18, 2007 at 1:06 pm
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
October 17, 2007 at 10:05 am
Viewing 15 posts - 451 through 465 (of 700 total)