Viewing 15 posts - 4,426 through 4,440 (of 7,168 total)
OK, this was not what it looked like at first glance...but there is somethign you need to know from the outset: SQL is declarative, not interpreted, so you cannot use...
April 19, 2012 at 3:04 pm
Uripedes Pants (4/19/2012)
I'm very green in SSIS but I've been thrown into a major project and tasked with putting in some error handling. Specifally, I need to check...
April 19, 2012 at 2:37 pm
The desire to use of an object name stored in a variable to build a query, e.g.
DECLARE @tableName SYSNAME;
SET @tableName = N'MyTable';
SELECT Column
FROM @tableName;
usually indicates a flawed design. Mind...
April 19, 2012 at 2:24 pm
I just tested it out...you can add the user to model and put it in the db_owner Role and anytime a new DB is created the user will be there....
April 19, 2012 at 1:24 pm
GilaMonster (4/19/2012)
opc.three (4/19/2012)
You can retrieve the actual plan for your session, check out this article for next time:
That gets an...
April 19, 2012 at 1:13 pm
You can retrieve the actual plan for your session, check out this article for next time:
April 19, 2012 at 12:55 pm
Lynn Pettis (4/19/2012)
April 19, 2012 at 12:42 pm
Tristan Chiappisi (4/19/2012)
April 19, 2012 at 12:29 pm
Which SSIS data type are you converting the string to?
See section "Mapping Integration Services Data Types to Database Data Types" on Integration Services Data Types to ensure you are using...
April 19, 2012 at 12:04 pm
It is true that BEGIN / END adds clarity, but it does not release us from separating our batches with GO, i.e. this still produces an incorrect result:
use tempdb
go
create proc...
April 19, 2012 at 11:56 am
I am not sure how you would do this in one WMI query. I would setup two watchers in sequence...when the first watcher finds a file it will pass control...
April 19, 2012 at 9:57 am
HowardW (4/19/2012)
opc.three (4/19/2012)
itskanchanhere (4/19/2012)
April 19, 2012 at 9:46 am
April 19, 2012 at 9:29 am
itskanchanhere (4/19/2012)
April 19, 2012 at 9:27 am
Viewing 15 posts - 4,426 through 4,440 (of 7,168 total)