Viewing 15 posts - 46 through 60 (of 73 total)
of course!
thanks for the recap!!
January 22, 2009 at 2:29 am
My query extracts the daily sales figures from production for the previous day and every morning at 9am a report is sent to management detailing everything that has happened the...
January 21, 2009 at 12:16 am
i have the html mail up and running, but im hoping i would be able to reference an external css file with images sitting on a server somewhere.
is this...
January 20, 2009 at 1:37 am
is it possible to reference external style sheet and images for a sql mailer?
January 20, 2009 at 1:08 am
can anyone help with an html mailer?
January 19, 2009 at 1:58 pm
DECLARE @AppPasswords TABLE(PasswordID INT IDENTITY(1,1), UserID INT, Password VARCHAR(50), PwdDateCreated DATETIME)
INSERT INTO @AppPasswords (
[UserID],
[Password],
[PwdDateCreated]
) VALUES (
1,
HashBytes('MD5', 'fakepassword'),
'2008-11-24 10:16:44.461' )
SELECT * FROM @AppPasswords
IF EXISTS (SELECT * FROM @AppPasswords WHERE
[UserID]...
November 25, 2008 at 1:40 am
no worries people. i found a solution.
:w00t:
November 24, 2008 at 2:07 am
mmm, looks like hashing the column is the preferred method...
any advice and code examples?
November 24, 2008 at 1:49 am
yip. got it to compile.
but i found a better way, as my previous post.
thanks guys
November 20, 2008 at 2:27 am
found a solution. just declare a table variable with columns, UserID, Merchant and Classification
and make necessary changes.
DECLARE @user-id INT
DECLARE @OldUsername VARCHAR(50)
DECLARE @NewUsername VARCHAR(50)
DECLARE @OldClassification VARCHAR(50)
DECLARE @NewClassification VARCHAR(50)
DECLARE @OldMerchant...
November 20, 2008 at 12:59 am
hi Seth, you code does not compile.
Msg 137, Level 15, State 2, Line 28
Must declare the scalar variable "@NewUserName".
Msg 137, Level 15, State 2, Line 41
Must declare the scalar variable...
November 19, 2008 at 11:50 pm
thanks... had anyone else worked on something similar who can offer some more advice?
November 17, 2008 at 12:22 am
thanks thats fantastic. exactly what i was looking for...
October 6, 2008 at 3:18 am
Viewing 15 posts - 46 through 60 (of 73 total)