Viewing 15 posts - 16 through 30 (of 36 total)
You could query sysobjects for type 'U' (User Table) and run your command through a cursor to return the results of the statistics query for every table.
The following example will...
February 4, 2010 at 3:53 pm
You can also query sys.triggers or sys.objects on type 'TR' or 'TA'
February 3, 2010 at 5:49 am
You may also need to think about Statistics, i.e. with such a large data load you should set a job to update statistics, also check to see if auto update...
February 1, 2010 at 3:16 pm
The following book by Wiley has a good section on Excel with Analysis Services:
Data Mining with Microsoft SQL Server 2008
January 31, 2010 at 3:37 pm
The last move I did was SSRS 2005.
I restored the dbs to new hardware with a different name and ip address as the original server following the instructions below:
January 29, 2010 at 4:25 pm
Same here we use a domain account with complex passwords but they don't expire like the rest of the domain user accounts.
I don't like the idea of failing jobs because...
January 29, 2010 at 3:19 pm
Is there something stopping you creating a seperate instance on the test server for the accounting database and linking to that? That way Live and Test would be on...
January 29, 2010 at 3:08 pm
You may need to update any aliases your servers or clients could be using:
cliconfg.exe
January 29, 2010 at 5:28 am
Hi Hans
If you run profiler you can see exactly what the report runs.
It gets the values from DBCC SHOWFILESTATS and sys.data_spaces, DBCC SQLPERF ( LOGSPACE ), sysfiles, sys.partitions, sys.allocation_units and...
May 29, 2009 at 8:36 am
Done a bit more research and it seems although Standard Version supports Partitioned Views it does not always consider it when creating an execution plan, hence why the first query...
March 5, 2009 at 9:43 am
Thanks guys, didn't know about the first column being used for selectivity by the optimiser, that will be useful.
I'll let you know how it goes, thanks for the input guys.
Stef.
September 18, 2008 at 3:29 am
This problem does seem to point an execution plan problem.
After searching through the forum i have changed the date hardcoded values to variables and the query now completes in 4...
December 12, 2007 at 8:57 am
More observations....
If I change the query to a select * instead of doing the calculations the query returns within 1/2 minute.
If I specify a column in the select then the...
December 12, 2007 at 4:50 am
Just to confirm, you mean "execution plan", right ? Yes I did.
And you have verified that the plans are 100% identical ? Yes, I am looking more into the...
December 12, 2007 at 2:31 am
Hi PW
Just looking at pintable and although it does sound like the symptons we are experiencing are correct we do not pin any of our tables.
Thanks for your help so...
December 11, 2007 at 10:13 am
Viewing 15 posts - 16 through 30 (of 36 total)