Viewing 15 posts - 11,566 through 11,580 (of 14,953 total)
It's an "end of command" marker. Currently, it's voluntary, but as Matt mentioned, it's supposed to be mandatory at some point.
January 14, 2009 at 12:42 pm
If you search for "SSIS variable" in Books Online, it has data on how to set variable values programmatically, and so on.
January 14, 2009 at 11:47 am
That's a good idea, Steve. Remove the name/user ID from it, so it's not a "blamethrower" log, just a billable hours log.
January 14, 2009 at 11:43 am
David Reed (1/14/2009)
January 14, 2009 at 11:41 am
Ross McMicken (1/14/2009)
GSquared (1/13/2009)
As a note, he had the production server and the dev server open in Management Studio at the...
January 14, 2009 at 11:39 am
You can make the last step of a job be something that logs completion, and the first step of the next job be something that checks for that, and waits...
January 14, 2009 at 11:36 am
Something like that would require a lookup table and some more complex rules, but it could certainly be done.
If you go that way, you might also want to add an...
January 14, 2009 at 11:33 am
How about:
select sum(UnitPrice), min(ProductOption)
from totalsum
Will that give you what you want?
Or, when you say "first", do you mean the lowest, or the one in the first row? What if...
January 14, 2009 at 11:32 am
You could, but there's no real reason for it. SQL Server will cache the data and such for you pretty efficiently.
If you really need to do that, use DBCC...
January 14, 2009 at 11:29 am
The other thing you can do is join the inserted data back to the source data, in a second query.
For example:
create table #T (
MyTableID int primary key);
insert into dbo.MyTable (columns)
output...
January 14, 2009 at 11:24 am
You can do direct math on datetime data.
Why not use:
workitem_created_on >= @StartDateTime and workitem_created_on < @EndDateTime
You just have to make sure that @StartDateTime is the date, and time, you want...
January 14, 2009 at 11:17 am
I would add a flag to the data for "IsApproved" or something like that. Defaults to 0, and can only be changed to 1 by a manager. Queries...
January 14, 2009 at 11:05 am
Management Studio won't do that for 2005 (even Management Studio 2008). You have to get a third party product for that, like the ones from RedGate and ApexSQL.
January 14, 2009 at 10:59 am
I haven't seen an option for that in the installer. Probably should be, and maybe I'm just missing it, but I haven't seen it.
January 14, 2009 at 10:31 am
Viewing 15 posts - 11,566 through 11,580 (of 14,953 total)