Viewing 15 posts - 451 through 465 (of 708 total)
The LiteSpeed Extraction Utility (extractor.exe) is part of the LiteSpeed install. Usage is covered in the LiteSpeed help file.
-Eddie
February 25, 2008 at 2:12 pm
Roy,
Why would you go through the trouble of the UNION ALL view? Does OBJECT_NAME() not work for you?
-Eddie
January 25, 2008 at 2:50 pm
OBJECT_NAME() takes two parameters, the second being an optional database id. Both values are available in sys.dm_exec_sql_text.
For example:
SELECT r.session_id, r.wait_type, r.wait_time, r.reads, r.writes, r.logical_reads, r.cpu_time,
...
January 25, 2008 at 12:26 pm
The problem is that by using a variable that way, the result is the same as if your query were:
[font="Courier New"]SELECT e.C1, e.C2, e.C3, e.C4, ROW_NUMBER() OVER(ORDER BY 'C1') as...
January 24, 2008 at 11:47 am
The multiplexing topic you reference is the key point. You are licensing the users accessing the data, not the software accessing the server. If users are using Business...
January 6, 2008 at 10:09 am
CALs are not server-specific. One CAL allows a single user to connect to any number of SQL Servers on the same physical network of the same edition as the...
December 18, 2007 at 2:18 pm
When you create a database, all of the system objects go into the filegroups where they reside in the model database. Unless you've changed that, that means they all...
December 15, 2007 at 3:02 pm
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
Viewing 15 posts - 451 through 465 (of 708 total)