Viewing 15 posts - 16 through 30 (of 60 total)
Here is a simple example of what I was attempting to explain prior:
;WITH
L0 AS (SELECT 1 AS c UNION ALL SELECT 1),
L1 AS (SELECT 1 AS c FROM L0 as...
July 13, 2010 at 1:22 pm
One way would be to use a tally table. Create a (cte, inline view, table variable, or temp table) with the columns for your report, adding a row number...
July 12, 2010 at 2:28 pm
We've had all kinds of trouble with text delimiters when importing to SQL2005. From our past experience if the text delimiter is in the column it just needs to...
March 26, 2010 at 1:05 pm
I've used those numbers as a starting point, but you really need to identify where that seldom used index is actually being used. It could be a very...
March 10, 2010 at 9:07 am
You might want to check page life expectancy. We had a server with many of the PAGEIOLATCH_SH waits along with page life expectancy that would live at single and...
February 17, 2010 at 12:08 pm
sys.dm_db_index_usage_stats does report on heaps, so it would include tables without indexes (index_id=0). But as mstjean mentions, the stats are only kept since the last server startup.
jg
February 2, 2010 at 9:23 am
Here is a stored proc I have used to collect space data on multiple db's. it might provide some ideas for you?
I collect total allocated and total used(reserved). ...
January 28, 2010 at 3:18 pm
Madison, WI
Glad to provide the turkeys for the Lion's Thanksgiving day feasts...
jg
January 26, 2010 at 8:53 am
lol, I've got a database that has a few of those runaway DTA indexes (all columns included) - almost like having multiple clustered indexes <grin>
btw, you can...
January 15, 2010 at 11:36 am
In SQL Server we created an alert based on the Proccessed Blocked counter that sends an email and kicks off a job that collects the blocking info and populates a...
November 3, 2009 at 8:08 am
Can you get the format changed on that input file? That would be the easiest.
I don't believe bcp handles text delimiters, and from that example it appears to have...
October 14, 2009 at 7:45 am
George is correct...that file is going to give you trouble. It appears to be comma field delimited with text delimiters of ¬
I would recommend using ¬ as a field...
October 13, 2009 at 10:49 am
I found very little overlap between this book and the Microsoft specific one. The Microsoft specific one assumes you already understand dimensional design - it is focused on implementation...
April 24, 2009 at 8:26 am
The SQL Agent account is domain admin. I believe it is OK because every once in a while the job completes successfully. The output from dtexec on at...
April 23, 2009 at 4:28 pm
no. it is directly passed on the command line.
The plot just changed - I was able to get the OS (dtexec) to fail - it ran through more child packages...
April 23, 2009 at 2:31 pm
Viewing 15 posts - 16 through 30 (of 60 total)