Viewing 15 posts - 11,356 through 11,370 (of 11,676 total)
My question was, how do you want to capture it?
Do you just want to read it? Do you want to write it to a file? To a table? To be...
Need an answer? No, you need a question
My blog at https://sqlkover.com.
MCSE Business Intelligence - Microsoft Data Platform MVP
June 4, 2010 at 3:18 am
Well, if you use the Script Task that I gave as an example, you can write your own custom log entries.
Need an answer? No, you need a question
My blog at https://sqlkover.com.
MCSE Business Intelligence - Microsoft Data Platform MVP
June 4, 2010 at 3:18 am
Phil Parkin (6/3/2010)
What is this, some sort of examination?
And you failed 😉 😀
I believe the poor chap had a terrible job interview and that he has posted the questions he...
Need an answer? No, you need a question
My blog at https://sqlkover.com.
MCSE Business Intelligence - Microsoft Data Platform MVP
June 4, 2010 at 2:49 am
If I use Execute SQL Tasks to force a transaction, I use the following commands:
BEGIN TRAN (at the beginning)
and
COMMIT (at the end).
Make sure the connection manager to your database has...
Need an answer? No, you need a question
My blog at https://sqlkover.com.
MCSE Business Intelligence - Microsoft Data Platform MVP
June 4, 2010 at 2:46 am
Do you need the data in a table or do you just want to view the data?
ps: your caps lock is broken
Need an answer? No, you need a question
My blog at https://sqlkover.com.
MCSE Business Intelligence - Microsoft Data Platform MVP
June 4, 2010 at 2:40 am
Can't you put the DB Name in the string that you log?
Need an answer? No, you need a question
My blog at https://sqlkover.com.
MCSE Business Intelligence - Microsoft Data Platform MVP
June 4, 2010 at 1:39 am
Great question, but hard to read. 🙂
Need an answer? No, you need a question
My blog at https://sqlkover.com.
MCSE Business Intelligence - Microsoft Data Platform MVP
June 4, 2010 at 1:38 am
Ali_SQLDBA (6/2/2010)
My package is on sql 08. But, my package will traverse through different servers which includes sql 05. Does this matter?
No, the version is important because the .NET code...
Need an answer? No, you need a question
My blog at https://sqlkover.com.
MCSE Business Intelligence - Microsoft Data Platform MVP
June 3, 2010 at 6:15 am
Colin Betteley (6/2/2010)
Each Task is speparate having its own SELECT clause and own connection manager to each server. The only connection between the tasks...
Need an answer? No, you need a question
My blog at https://sqlkover.com.
MCSE Business Intelligence - Microsoft Data Platform MVP
June 2, 2010 at 5:01 am
kanth.vishal (5/28/2010)
I have already converted this into string using data transformation column ie DT_STR
Strange, this works at my system:
declare @test smalldatetime;
select @test = CONVERT(char(8),19010101);
print @test
Is it only for the date...
Need an answer? No, you need a question
My blog at https://sqlkover.com.
MCSE Business Intelligence - Microsoft Data Platform MVP
June 2, 2010 at 2:54 am
Are you working with SSIS 2005 or 2008?
I know you can do the following in 2008:
Try
' Test here for the space in the name and put all your other code...
Need an answer? No, you need a question
My blog at https://sqlkover.com.
MCSE Business Intelligence - Microsoft Data Platform MVP
June 2, 2010 at 2:46 am
imani_technology (6/1/2010)
Need an answer? No, you need a question
My blog at https://sqlkover.com.
MCSE Business Intelligence - Microsoft Data Platform MVP
June 2, 2010 at 2:40 am
stewartc-708166 (6/1/2010)
a SQL job can execute a step of type "SQL Server Integration Services Package", irrespective of whether the package is stored in SQL Server...
Need an answer? No, you need a question
My blog at https://sqlkover.com.
MCSE Business Intelligence - Microsoft Data Platform MVP
June 1, 2010 at 3:19 am
The problem you described is an old caveat that exist (or did exist) in most programming languages.
Usually this is with the iif or iff syntax.
Most programming languages either deprecated the...
Need an answer? No, you need a question
My blog at https://sqlkover.com.
MCSE Business Intelligence - Microsoft Data Platform MVP
June 1, 2010 at 3:05 am
If you use a "logical" surrogate key in the fact table, for example 20100601, you can still have the time table AND fast searching and simple SQL queries against the...
Need an answer? No, you need a question
My blog at https://sqlkover.com.
MCSE Business Intelligence - Microsoft Data Platform MVP
June 1, 2010 at 12:26 am
Viewing 15 posts - 11,356 through 11,370 (of 11,676 total)