Viewing 15 posts - 76 through 90 (of 200 total)
thanks all for your answers.
I'll try different approach.
p.s - i'm workig on a html report that sent from sql.
February 1, 2010 at 8:26 am
yes I'm trying to update an int column to put varchar character.
i know that i can't update this column,but i think maybe there is something to do.
by the way how...
February 1, 2010 at 4:49 am
Animal Magic (1/31/2010)
Mad-Dog (1/31/2010)
how to use the case in the update statment for a value that is NULL in the column?THX
update <tableA>
set <column> = case when B.<column> is null then...
February 1, 2010 at 12:39 am
how to use the case in the update statment for a value that is NULL in the column?
THX
January 31, 2010 at 6:14 am
now i want to update the null value to varchar like 'No Data'
January 31, 2010 at 1:44 am
Thanks but i found another way
DECLARE @TEMP_TABLE_HOLD_TOTAL_SECOND TABLE (TOTAL_SECOND BIGINT)
DECLARE @SQL_START_TIME DATETIME
DECLARE @CURRENT_DATETIME DATETIME
SET @CURRENT_DATETIME = GETDATE()
SELECT @SQL_START_TIME = create_date FROM master.sys.databases where name = 'tempdb'
INSERT INTO @TEMP_TABLE_HOLD_TOTAL_SECOND
SELECT DATEDIFF (ss,@SQL_START_TIME,@CURRENT_DATETIME)AS...
January 23, 2010 at 3:31 pm
I'm working on a report info.
can you give me an example of ths datepart?
THX
January 23, 2010 at 1:50 pm
can you show me little example that i can progress with it?
THX
January 23, 2010 at 12:41 am
what i meant is the email that sent to me i want to change the font size and color.
THX
January 21, 2010 at 12:02 am
THX i've managed with this proc.
January 11, 2010 at 3:01 am
can you give me an example of simple proc that have help in it?
THX
January 11, 2010 at 1:10 am
no.
it's design for sql 2005 and above.
sry.
December 20, 2009 at 3:32 am
can you help here with a little start example of the script that i'm looking for?
THX
December 16, 2009 at 2:59 am
maybe you can hep me different approach
i want to retrieve the last top 10 history job from the msdb..sysjobhistory for each job.
how i can write this syntax?
THX
December 16, 2009 at 1:32 am
Viewing 15 posts - 76 through 90 (of 200 total)