Viewing 15 posts - 61 through 75 (of 517 total)
Phil Parkin (1/25/2011)
Derrick Smith (1/25/2011)
That would...
January 25, 2011 at 12:28 pm
I always try to keep my queries as SPs on the database itself, and then reference the SP from the package. Makes maintenance/troubleshooting much easier.
That would also fix this issue...
January 25, 2011 at 12:20 pm
Ahhh, found it, and it's working now.
The SQL job step that starts the agent needed to have -Continuous in the command line.
Oddly enough, I never changed this and it was...
January 25, 2011 at 12:16 pm
Have you tried disabling hyperthreading yet?
January 25, 2011 at 8:40 am
Sure. You're overthinking it:
CREATE PROCEDURE Vendors @GPCompany CHAR(5)
AS
BEGIN
DECLARE @Location CHAR(5)
SET @Location = (SELECT [Location]
...
January 25, 2011 at 8:39 am
Script out the table in SSMS and recreate it with a new name, migrate data, delete old table, rename new table to old name.
I got this error quite a few...
January 24, 2011 at 3:45 pm
Whoops - sorry about that. Force of habit on the PARTITION BY.
January 24, 2011 at 2:13 pm
What if you execute the SP manually from SSMS passing the same variables?
Start at the very bottom and work your way up.
January 24, 2011 at 2:07 pm
First thing that pops into my head is Hyperthreading (as also mentioned by someone else).
I had a similar issue where everything was just dragging and I couldn't figure out why...turns...
January 24, 2011 at 2:04 pm
SELECT [RN] = Row_number() OVER (PARTITION BY NAME ORDER BY NAME)
,[name]
INTO #RuleList
FROM sys.objects
WHERE type = 'P'
...
January 24, 2011 at 2:00 pm
Can you post the code for the proc? From my limited C# knowledge it sounds like there's an internal transaction in the SP and no results are being returned. What...
January 24, 2011 at 1:55 pm
This is basically the exact reason linked servers exist.
Why don't you want to use them?
January 24, 2011 at 1:54 pm
Agreed..
When a server is inexplicably slow, this is usually the order of things I check:
1) CPU
2) SAN Cache (may not be applicable)
3) Blocks
4) Spids that are Runnable (usually looking for...
January 21, 2011 at 2:39 pm
Doesn't seem to work on clustered instances..at least not the 3 I tried. 🙁
Very handy in any case though for all non-clustered servers. Going to get much use out of...
January 21, 2011 at 11:00 am
Viewing 15 posts - 61 through 75 (of 517 total)