Viewing 15 posts - 1,306 through 1,320 (of 1,518 total)
... or try the following (don't use * though, not a good practice - use named list instead):
="SELECT * FROM Employees; EXEC dbo.insert_into_table_Sprocs @parameter=" & Parameters!XXX.Value
Give that a try. Play...
March 28, 2008 at 5:12 am
I'll confess I'm addicted to this site...
Every time I get an email notification on a new posting, it's as if it goes straight to my veins! :w00t:
March 27, 2008 at 8:18 pm
Also, it may be that Max. degree of parallelism (MAXDOP) is set to an excessively high value on your instance.
Run the following query to get the top 10 wait types...
March 27, 2008 at 4:47 pm
Since DTA stops unexpectedly, run the following statement to ensure there are no hypothetical indexes left behind:
SELECT *
FROM sys.indexes
WHERE is_hypothetical = 1
Drop any such...
March 27, 2008 at 4:14 pm
I think the DTA still needs a lot of work on behalf of the SQL Server dev team.
I have only been able to get it to work on individual queries...
March 27, 2008 at 4:03 pm
Provided your instance has been running long enough for adequate stats - say a few days - the following query will yield the top 10 most CPU-intensive queries since last...
March 27, 2008 at 3:56 pm
GilaMonster (3/27/2008)
What are your server's max and min memory settings? Anything else on the...
March 27, 2008 at 3:41 pm
Adam Haines (3/27/2008)
March 27, 2008 at 1:44 pm
rbarryyoung (3/26/2008)
On second thought, maybe you should just brung Brian along. 😉
I don't think I can afford him... 😉
March 27, 2008 at 10:13 am
rbarryyoung (3/26/2008)
Marios Philippopoulos (3/24/2008)
So at the moment I'm stuck with a less than ideal scenario, and I want to try the Kerberos-auth option...
Good luck. Make sure that you've got...
March 27, 2008 at 10:12 am
colin Leversuch-Roberts (3/26/2008)
March 26, 2008 at 10:18 am
Tim Mitchell (3/25/2008)
Is there any reason...
March 26, 2008 at 8:45 am
There's a great document which details how to configure and troubleshoot Kerberos delegation related problems here (it's essential reading for CRM 3.0 configurations where all the tiers are on separate...
March 26, 2008 at 7:56 am
Grant Fritchey (3/25/2008)
...For details on locking, I'd look at Inside SQL Server 2005 "The Storage Engine."
...pages 345 ff 🙂
March 25, 2008 at 3:32 pm
I have the exact same issue - some more info on the file location would be appreciated
March 25, 2008 at 10:16 am
Viewing 15 posts - 1,306 through 1,320 (of 1,518 total)