Viewing 15 posts - 10,186 through 10,200 (of 18,923 total)
No idea what the problem is.... can't wait to see what everyone else can come up with!
January 31, 2007 at 3:08 pm
Ya that's the solution he can't make work from the link... Got any working sample you an provide?
January 31, 2007 at 12:49 pm
You don't need to output the sort column to use it in the order by :
CREATE TABLE tblContent (content varchar(2))
INSERT INTO tblContent (content) VALUES ('1a')
INSERT INTO tblContent (content) VALUES...
January 31, 2007 at 12:41 pm
Tried the same openrowset/openquery (the one which doesn't required a live linked server)?
January 31, 2007 at 12:39 pm
That'll work.
CREATE TABLE tblContent (content varchar(2))
INSERT INTO tblContent (content) VALUES ('a')
INSERT INTO tblContent (content) VALUES ('c')
INSERT INTO tblContent (content) VALUES ('b')
INSERT INTO tblContent (content) VALUES ('e')
INSERT INTO tblContent (content) VALUES...
January 31, 2007 at 12:14 pm
I didn't look at the link but here's how I do it :
EXEC [LinkedServerName].msdb.dbo.sp_start_job @job_name = 'UpdateDeveloppementDatabase - Documentation'
If tat doesn't work can you specify the errors you...
January 31, 2007 at 12:01 pm
I was thinking that proc a runs fines.
Proc b calls proc a.
Either plan b can be screwed, or plan b calls for an older/different version of plan a.
That's why recompile...
January 31, 2007 at 11:59 am
A few more ideas came to mind... maybe that'll spark a light for you.
Does tempdb have to grow while doing that process?
Any other log or data file need to grow?
What's...
January 31, 2007 at 10:03 am
Tried recompiling the objects?
How many indexes on the inserted table?
Is there a trigger on that table [now].
January 31, 2007 at 10:02 am
Ya like select the data you want to keep then drop that table... but I'm sure you knew about that one
.
January 31, 2007 at 8:00 am
You can delete directly in the system tables in 2005 ?!?!
January 31, 2007 at 7:57 am
I don't have 2005 installed here.
What have you found in the relations of the system tables?
January 31, 2007 at 7:41 am
I'm gonna go out on a limb and presume that logging takes more space than the actual data... but 2X, that's seems a lot.
Maybe a lot of indexes need to...
January 31, 2007 at 7:09 am
Have you tried deleting the maintenance plan linking to that job?
January 31, 2007 at 7:08 am
Viewing 15 posts - 10,186 through 10,200 (of 18,923 total)