Viewing 15 posts - 1,051 through 1,065 (of 2,469 total)
Farrell - maybe it's time to hit the pubs again - thirst can do this to a man!
editing - pubs - as in...
September 14, 2005 at 3:12 pm
CM - I'm curious - are you by any chance from India ?! For some weird reason (unless it's coincidence) I've come across 2 posts referring to these "magic tables"...
September 14, 2005 at 12:34 pm
Oops - my bad! - saw tasks, steps etc... and just assumed you're talking about the system tables....
why don't you post the ddls and...
September 14, 2005 at 5:56 am
Olivier - see if you can find this in your "sysjobsteps" system table in the "msdb" database...
September 14, 2005 at 5:05 am
DECLARE @singleRow varchar(1000)
SET @singleRow = ''
SELECT @singleRow = COALESCE(@singleRow + Name + '|', '')
FROM myTable
PRINT @singleRow
September 13, 2005 at 4:39 pm
Hey - that's a novel way to increase your post count...
September 13, 2005 at 10:49 am
funny - good thing no users are reading this...
But it has been very frustrating alright for the last 2 weeks...I think only remi...
September 13, 2005 at 8:18 am
Dimitri - as Paul indicates, you could check one of several things depending on your requirements....
1) you could select @@rowcount to find out how many rows have been affected by...
September 13, 2005 at 8:04 am
I do - just didn't understand the question - so didn't realize the "sameness"!!
at any rate I don't want to go back to being "waitinginlineforleftoverscraps" so now that you're...
September 13, 2005 at 6:56 am
KG - do you mean you want to use the output of one procedure as input to another nested procedure ?!
September 13, 2005 at 6:25 am
ppa - the order of columns in your "insert into" table may be different from the column order in your "select from"...at any event, it's always good practice to explicitly...
September 13, 2005 at 6:20 am
Robert - your prodweekend is an alias...use the actual column names in your function - something like this...
select [Due Date] - [+31b] as prodweekend, fn_somefunction([Due Date] - [+31b]) as calcColumn...
September 13, 2005 at 6:11 am
Suggestion - you could try configuring ODBC to "Use regional settings when outputting currency, numbers, dates and times"....and see if that fixes it!
September 12, 2005 at 10:37 pm
Viewing 15 posts - 1,051 through 1,065 (of 2,469 total)