Viewing 15 posts - 121 through 135 (of 337 total)
Are you using SQL's native Backup utility? If so why don't you specify how many days old the backups can be? This way SQL will automatically delete the backup...
October 9, 2009 at 8:25 am
Check out SQL Profiler. In Management Studio it's under Tools -> Sql Profiler. You can trace all database activity. It'll tell you all sorts of good stuff!
You can trace...
October 2, 2009 at 11:25 am
Thanks for the reply I just realized I was looking at the wrong temp table (which had no data at that point in the query)... doh! I thought maybe it...
October 2, 2009 at 9:11 am
Thanks G2 and Mark!
That was definitely the issue!!!!
September 29, 2009 at 9:57 am
If you use the sp_DisplayOAErrorInfo which calls sp_hexidecmal and sp_OAGetErrorInfo (Extended System SP) it'll convert that HResult into a readable error.
I'm pretty sure you'll have to create sp_DisplayOAErrorInfo...
September 14, 2009 at 8:55 am
You need to capture the OA error output of the various methods being used. You may have an OA error but the email procedure won't display that info without the...
September 14, 2009 at 6:27 am
Jeff,
Good article. I'll have to try that next opportunity I get!
August 4, 2009 at 11:53 am
If the data is going to be different lengths then the code I provided would not work although it can be modified to do so.
As far as the function Lynn...
August 4, 2009 at 7:11 am
Here is one way to do it:
declare @Acc varchar(100),@AccString varchar(100)
set @AccString = 'Res1,Res2,Res3,Res4' --or select @AccString = Column from YourTable
--Create Temp Table
IF Object_ID ('#Array') is null
BEGIN
Create Table...
August 3, 2009 at 2:53 pm
You can do this a few ways but it depends on the data that's being input.
Do you know what kind of data is going to be input? Will it be...
August 3, 2009 at 2:19 pm
Okay I figured it out. While the above command successfully runs but doesn't change the data the problem was I need to put the replace command in front of the...
March 23, 2009 at 7:39 am
That was a good suggestion. I totally forgot about email size.
The attachment when I export it from the Web is only 220KB so It's small. However when viewed in the...
March 6, 2009 at 9:29 am
aram,
Are you referring to using the XML Datatype with the sp_MakeWebTask proc?
I only specified -C (Chacter) with that proc so maybe that will work.
February 8, 2009 at 8:30 am
Bob,
Thanks for the reply.
I am using SQL 2000.
I am not sure about using ROOT with the FOR XML command. I didn't know that was an option... hopefully it's applicable...
February 8, 2009 at 8:27 am
Fixed.
AIf you include both carets it wipes out them and everything between them.
I used "Closed Tag" to represent a ">"
February 7, 2009 at 6:20 pm
Viewing 15 posts - 121 through 135 (of 337 total)