Viewing 15 posts - 16 through 30 (of 45 total)
I will check tomorrow at work ...
Thanks!
March 31, 2010 at 6:29 pm
I used your code (below) inside my trigger:
INSERT INTO #B(EventType, Parameters, EventInfo)
EXEC ('dbcc inputbuffer (' + @@spid + ') with no_infomsgs')
SELECT * FROM #B
It returned the code from...
March 30, 2010 at 9:31 pm
Seth,
The code works well but in my trigger, when I call the code, it returns the trigger code instead of the SQL or stored procedure that...
March 30, 2010 at 9:35 am
I tried it ... it works!
Thanks! 😀
March 29, 2010 at 6:05 pm
Seth,
I was a little premature. The 2 other snippets worked great. I am having problems with the 3rd one.
Here is what I have (note: I used a global...
March 29, 2010 at 3:28 pm
I tried it today at work and it works! Thanks!
March 26, 2010 at 2:29 pm
Seth,
I read your reply more closely. Correct me if I am wrong ... it sounds as though these snippets will capture the T-SQL that is...
March 25, 2010 at 7:44 pm
I am reading this from home and cannot try it out until tomorrow. I am relatively new to this area of SQL Server. Will this code run from inside...
March 25, 2010 at 7:32 pm
NTEXT can hold up to 2 Billion characters. The max number of bytes for a row in SS2K is 8060. SS2K stores the data in other places and only keeps...
January 22, 2010 at 5:17 pm
BOL recommends that you don't use UPDATE with NTEXT since the field only holds a pointer to "out of row" data.
January 22, 2010 at 5:15 pm
Many thanks to both of you!
-- Tom
January 20, 2010 at 5:00 am
PS. My organization previously bought the source code to the COTS package that we have and we are able to manipulate the back-end. My thought is to try changing...
January 19, 2010 at 6:50 pm
Gail and Lynn,
Thanks for your advice. Today, I went and created a test table with one ntext column and was able to insert 38 million characters ... it took...
January 19, 2010 at 6:48 pm
Oops ... I am using SS2K! Sorry.
I know how to generate the scripts using EM and QA (one at a time). I was just trying to see if there were...
January 21, 2009 at 5:10 am
Viewing 15 posts - 16 through 30 (of 45 total)