Viewing 8 posts - 1 through 8 (of 8 total)
Ok. Then, first back up the DB, next restoring on secondary server, and finally enable the log shipping??
March 26, 2010 at 11:22 am
Hello,
I have the same problem, I need to delete thousands and thousands of records, I dont want to truncate the table...
the problem is that the log reach the 100GB and...
May 13, 2009 at 5:19 pm
Dont worry Man, I change the temp table to defined columns y with that fix my problem.
but if you like to see the code where I create the temp...
April 23, 2009 at 5:11 pm
Well, I choose to fix the columns because the matter from the begin was the name headers of columns and the N number of columns has limit that are the...
April 23, 2009 at 11:39 am
Ok.
I have an App Report, this execute the store p1. here there is no problem.
Beside, i have an store p3, to send an email with those data. p3 define, subject,...
April 23, 2009 at 10:04 am
ok. thanks both for your answers. but at this moment I think the answer of Bob is more useful for me.
How can I do that?
well, actually the store two is...
April 23, 2009 at 7:48 am
Well, searching for a while I found this:
CREATE TABLE #tmp
(col1 INT,
col2 VARCHAR(50),
col3 VARCHAR(255))
INSERT #tmp
EXEC dbo.MyStore
but the problem is that...
February 5, 2009 at 2:41 pm
Viewing 8 posts - 1 through 8 (of 8 total)