Viewing 15 posts - 3,181 through 3,195 (of 13,461 total)
your settings for CDC were probably set to keep data for 100 years or something,a nd now you are seeing some performance inpact;
I setup CDC on a few tables, but...
July 1, 2013 at 6:09 am
arbcoll (10/10/2012)
July 1, 2013 at 5:29 am
instead of returning a zero when there's an error, just throw a sqlexception, and that will return the full error message, so you can track it down completely.
if it's a...
June 30, 2013 at 9:41 am
yeah i strugged thru the broken DDL as well;
unfortunately, becuase you have no true relationship to the two tables, you have to make assumptions to get teh data to work...
June 28, 2013 at 3:27 pm
I've got a CLR i created that does a proof of concept reading of mail from a POP3 server; i'm slapping together an article for SSC on it;
The problem ...
June 28, 2013 at 1:30 pm
i believe you need to script out the jobs, and find and replace the old server name with the new server name; As I remember it, the jobs have the...
June 28, 2013 at 12:35 pm
darthurfle (6/28/2013)
I am not trying to make the solution harder. It is a real world situation.
The table in question is a SAP ECC Add-on "standard" table that establishes relationships...
June 28, 2013 at 12:12 pm
you want to use raiseerror as a progress indicator from some dynamic SQL, is that it?
here's one example that would be appriate in a cursor loop, does this help?
--print error...
June 28, 2013 at 11:32 am
ok i still don't understand the issue i guess; I think you are over complicating things too much.
correct me if i am wrong, but you need to delete ALL data...
June 28, 2013 at 11:24 am
or grab them all in one data set, duh, i should have posted this first!
SELECT object_schema_name(object_id),
object_name(object_id),
DEFINITION
FROM sys.sql_modules
ORDER BY object_name(object_id)
June 28, 2013 at 9:52 am
halifaxdal (6/28/2013)
June 28, 2013 at 9:48 am
hopefully you'll get a stack of options;
Here's one: this procedure returns a table of HTML-formatted information that documents some server settings, and object details of the currently scoped database:
June 28, 2013 at 9:17 am
tstagliano (6/28/2013)
June 28, 2013 at 8:13 am
as long as you declare a temp table before the EXEC command, any other queries would have that table in scope, and can insert into it (same for permanent tables)
so...
June 28, 2013 at 8:00 am
Maddave (6/28/2013)
June 28, 2013 at 6:54 am
Viewing 15 posts - 3,181 through 3,195 (of 13,461 total)