Viewing 15 posts - 16 through 30 (of 67 total)
I've never been able to get SQLMail to work successfully with Lotus Notes. Instead, I have had to resort to using VBScript and CDONTS to send mail.
July 5, 2007 at 8:35 am
Select servername, LEFT (alert, CHARINDEX(' on ', alert) ) as Alert, substring(alert,CHARINDEX(' on ', alert) +4,len(alert) - (CHARINDEX(' on ', alert)+3)) as AlertDate from tempTNG_Alerts
July 5, 2007 at 8:20 am
Perhaps I posted too soon ( or maybe my post removed the curse ). Our most recent test, completed this morning, worked successfully. ...
May 31, 2007 at 7:20 am
any chance ARC_SG40MasterDelibere_DelibereApprovate has an INSTEAD OF trigger on it, causing seperate updates to occur?
May 17, 2007 at 10:48 am
No loops, minimal dynamic sql
Create
table #HexToAlpha
(
recordid dec
(5,0) identity
May 17, 2007 at 10:43 am
Check BOL for the GROUPING keyword for more details.
select
RM.fldEditedBy as 'User Login',
case Grouping(RM.fldPriorityCode)
when 0 then RM.fldPriorityCode
else 'Total' end as 'Priority',
count(datediff(day,RM.fldRequestDate,RM.fldComCanDate)) as 'Calls Resolved'
May 11, 2007 at 9:39 am
create procedure usp_UpdateTables
@value varchar(50)
as
BEGIN
UPDATE table1
SET col1 = @value
UPDATE table2
SET colA = @value
END
May 11, 2007 at 6:38 am
Try using WITH ROLLUP or WITH CUBE. That along with judicious use of the GROUPING function should produce exactly what you need.
A thorough reading of the BOL entries for the...
May 11, 2007 at 6:33 am
The issue here is that since the view is not defined, executing the procedure results in a FATAL error. Fatal errors cause a procedure to abort processing. The definition of...
May 11, 2007 at 6:30 am
The SQL for storing the results in a table is fairly simple; however, the implementation has some potential pitfalls.
Replace
exec (@sql) -- How to store the result of this request...
April 12, 2007 at 6:12 am
I've been using Spotlight on SQL Server from Quest Software for several months as my main monitoring tool. It provides some of the drill down capabilities that you are looking...
March 6, 2007 at 11:13 am
Thanks for the responses.
By the way, the encryption was NOT my idea....they are vendor supplied procedures which the vendor has encrypted. (Not that it has stopped me from reading the...
November 10, 2006 at 11:54 am
The application is almost entirely sp based.
November 10, 2006 at 9:02 am
the use of the Z option in the command line indicates that the command line is encrypted using SQL Server 2000 Encryption. That is why you cannot find the package...
May 4, 2006 at 11:30 am
#1: For each insert with implicit transactions, the SQL Server engine creates a transaction; with explicit transactions, all inserts are wrapped in a single transaction. This can best be seen ...
May 4, 2006 at 11:17 am
Viewing 15 posts - 16 through 30 (of 67 total)
This website stores cookies on your computer.
These cookies are used to improve your website experience and provide more personalized services to you, both on this website and through other media.
To find out more about the cookies we use, see our Privacy Policy