Viewing 15 posts - 286 through 300 (of 1,229 total)
Good question. I did not see in the documented link the mention of table variables. Did I miss something?
Thanks
December 7, 2017 at 8:58 pm
Wrox the publisher has a good book on SSIS that I read some time back. I'm sure they have updated versions on the subject and that would make good reading.
December 5, 2017 at 9:05 pm
You can have a extended property that serves as a URL to a Sharepoint site or other shared resource with the actual columns documentation. Hence you at least here create...
November 21, 2017 at 9:39 pm
November 18, 2017 at 12:56 am
In your data set definition >
Something like this will help get you going : This just to illustrate the concept. I am using an older version of the adventure...
November 16, 2017 at 10:32 pm
I suppose that doing this in the following fashion
DECLARE @commandText VARCHAR(8000)=''
SELECT @commandText = @commandText +char(10) +char(13)+
'EXEC master.sys.sp_addmessage @msgnum = ' + CAST(message_id+10...
November 16, 2017 at 9:49 pm
Just to cross this item out, you are sure that your 'O' is not a'0' instead?
November 9, 2017 at 2:53 pm
In my dimDate table I like to have a DATE type to represent the weekStart, monthStart, quarterStart, etc...
With this design in place I can easily handle such a...
November 3, 2017 at 4:00 pm
Can you see my previous post and let me know if this is what you are trying to do? It appears you are, and from what I see you are...
November 3, 2017 at 3:43 pm
Referring to figures 7 and 8 ... I also wonder what someone would expect from the use of the NOLOCK operator. It is not an optimizing technique.
November 3, 2017 at 2:24 am
I definitely think there is a language barrier here as I am still hung up on
I have an assignment, to Purging data, with conditions:
November 3, 2017 at 2:02 am
Use a CTE to filter your target table.
Is the CTE able to make use of an appropriate index in this case? I am guessing yes...
November 3, 2017 at 1:54 am
I cant imagine 70 databases/iterations would be a burden on a cursor.
I have not tested this but something looking like >
use master
go
November 3, 2017 at 1:44 am
Not sure that you need a dynamic sql statement in Ole db source adapter, via a variable. To use something like a date variable I can simply construct my query...
November 2, 2017 at 1:22 pm
Viewing 15 posts - 286 through 300 (of 1,229 total)