Viewing 15 posts - 16 through 30 (of 46 total)
You could use the following query that gives most of the information you are looking for. One option would be to store the query in a sql file and...
August 15, 2013 at 4:00 pm
There is something missing. Could you send us the complete table structures?
February 6, 2013 at 11:58 am
Thanks to both for your thoughts. I was planning on gradually reducing the maxdop to see if there is any performance improvement. Regarding the memory and CPU, I...
February 6, 2013 at 11:02 am
Thanks for your insight Grant. Yes, regarding CXPacket waits, I am looking into Parallelism. Right now, the queries (INSERTS) span as 16 threads and some of the threads are...
February 5, 2013 at 4:22 pm
Guys-
Try this out
BEGIN
SET NOCOUNT ON
IF EXISTS (SELECT 1 FROM Tempdb..Sysobjects WHERE [Id] = OBJECT_ID('Tempdb..#DataFileStats'))
BEGIN
DROP TABLE #DataFileStats
END
IF EXISTS (SELECT 1 FROM Tempdb..Sysobjects WHERE [Id] = OBJECT_ID('Tempdb..#LogSizeStats'))
BEGIN
DROP TABLE #LogSizeStats
END
CREATE TABLE #DataFileStats
(DBName VARCHAR(255),...
December 6, 2005 at 8:49 am
PhillCart- As mentioned in my post, I cannot use Linked Server or Staging tables... Long story, why I can't use them.
You were talking about data driven query. Could you me...
November 17, 2005 at 9:23 am
Olavho-
I greatly appreciate your time. There is a little bit more to the problem. Let me explain.
ValueColumnName in the @subtable gives the name of the column in the @fulltable with...
August 29, 2004 at 12:53 pm
David-
Thanks for your reply. To answer your questions,
We need to keep the datatypes as we do a lot of comparisons and math on these values. So conversion may be...
April 12, 2004 at 12:02 pm
Steve-
I applied SP3a on my machine and then checked the @@verion. It still shows 8.00.384 I looked at the help in QA and it shows 8.00.760.
I checked sp_server_info and...
December 18, 2003 at 3:13 pm
Thanks a lot for your responses. I ran the profiler and saw that there is a SP that is being called today (not ever before) because the client started...
December 18, 2003 at 1:41 pm
Steve-
But I cannot see the users from the other server or domain from my EM as they are not trusted domains. I could create the user on the local,...
December 18, 2003 at 10:37 am
There is no change in the code. It is exactly the same as it was yesterday. It is possible that there could some queries that are executed today....
December 18, 2003 at 10:33 am
Allen-
You are right. I was not running SP3a. The Server checklist that was given to me said the server is patched up to 3a and I did not...
December 18, 2003 at 9:47 am
Allen-
I dont see any errors regarding TCP/IP in the error log.
This is how my log file looks.
2003-12-16 21:09:11.64 server Attempting to initialize Distributed Transaction Coordinator.
2003-12-16...
December 17, 2003 at 8:45 am
Viewing 15 posts - 16 through 30 (of 46 total)