Viewing 15 posts - 11,431 through 11,445 (of 11,676 total)
Normally, you can do all of these tasks quite easily with SSIS.
1. Use OLE DB Sources to connect to the various databases. Specify the SQL statement to select the data...
Need an answer? No, you need a question
My blog at https://sqlkover.com.
MCSE Business Intelligence - Microsoft Data Platform MVP
May 14, 2010 at 2:28 am
The size of the varbinary(max) should be no problem, as varbinary(max) allows up to 2^31-1 bytes. (see http://msdn.microsoft.com/en-us/library/ms188362.aspx). MSDN even says that varbinary(max) is suffice for a replacement of the...
Need an answer? No, you need a question
My blog at https://sqlkover.com.
MCSE Business Intelligence - Microsoft Data Platform MVP
May 14, 2010 at 2:18 am
Good question, although not that hard (for 2 points).
erajendar (5/13/2010)
Need an answer? No, you need a question
My blog at https://sqlkover.com.
MCSE Business Intelligence - Microsoft Data Platform MVP
May 13, 2010 at 11:59 pm
Nice question. And not so easy...
Need an answer? No, you need a question
My blog at https://sqlkover.com.
MCSE Business Intelligence - Microsoft Data Platform MVP
May 13, 2010 at 11:57 pm
Read this article:
If you are using the Flat File Source, you can directly store the filename in a column. If you only need the filepath and the filename in seperate...
Need an answer? No, you need a question
My blog at https://sqlkover.com.
MCSE Business Intelligence - Microsoft Data Platform MVP
May 12, 2010 at 5:54 am
You could store the error in a variable. Store the results of your dataflow task in a temporary table.
Then, after the data flow task has finished, use a script task....
Need an answer? No, you need a question
My blog at https://sqlkover.com.
MCSE Business Intelligence - Microsoft Data Platform MVP
May 11, 2010 at 4:37 am
I think he was referring to my comment where I stated that the data profiling taks, according to BOL, only works with ADO.NET and with SQL Server 2000 or up....
Need an answer? No, you need a question
My blog at https://sqlkover.com.
MCSE Business Intelligence - Microsoft Data Platform MVP
May 6, 2010 at 11:08 am
I don't think you can use any other connection besides ADO.NET:
or
http://technet.microsoft.com/en-us/library/bb895310.aspx
The solution: buy another product :-D:-P
Need an answer? No, you need a question
My blog at https://sqlkover.com.
MCSE Business Intelligence - Microsoft Data Platform MVP
May 5, 2010 at 8:18 am
Because sql server 2005 comes with Integration Services (SSIS) and it will always output .dtsx files.
If you want .dts files, you'll have to install SQL Server 2000 (or older? I...
Need an answer? No, you need a question
My blog at https://sqlkover.com.
MCSE Business Intelligence - Microsoft Data Platform MVP
May 5, 2010 at 8:06 am
No, I guess you didn't. SSRS is part of the Business Intelligence suite of SQL Server and since this is the forum Business Intelligence, you are probably correct of posting...
Need an answer? No, you need a question
My blog at https://sqlkover.com.
MCSE Business Intelligence - Microsoft Data Platform MVP
May 5, 2010 at 7:12 am
I have no idea. I have never used SSRS before 🙂
I'm more of a SSIS/SSMS/SSAS user.
Need an answer? No, you need a question
My blog at https://sqlkover.com.
MCSE Business Intelligence - Microsoft Data Platform MVP
May 5, 2010 at 6:05 am
I've read similar questions like this one on this forum, but I've never seen an answer. (maybe I stopped checking the thread too early :-)).
So I guess that it is...
Need an answer? No, you need a question
My blog at https://sqlkover.com.
MCSE Business Intelligence - Microsoft Data Platform MVP
May 5, 2010 at 5:57 am
To give a little more explanation:
DTS is the old version of SSIS. DTS uses .dts files, SSIS uses .DTSX files.
You can compare it with .xls for Excel 2003 and .xlsx...
Need an answer? No, you need a question
My blog at https://sqlkover.com.
MCSE Business Intelligence - Microsoft Data Platform MVP
May 5, 2010 at 5:53 am
Try placing brackets around the different logical parts of your OR statement.
Now you have:
WHERE something1 AND something2 ...
OR
somethinga AND somethingb ....
OR
...
Try the following:
WHERE (something1 AND something2 ...)
OR
(somethinga AND somethingb ....)
OR
Need an answer? No, you need a question
My blog at https://sqlkover.com.
MCSE Business Intelligence - Microsoft Data Platform MVP
May 5, 2010 at 5:50 am
only4mithunc (5/5/2010)
Friends...Its done, along with refreshing the OLEDB source , now I refreshed the Connection Manager, the it was reflecting.
SSIS and metadata refreshing :unsure:
I hope they do something about it...
Need an answer? No, you need a question
My blog at https://sqlkover.com.
MCSE Business Intelligence - Microsoft Data Platform MVP
May 5, 2010 at 2:37 am
Viewing 15 posts - 11,431 through 11,445 (of 11,676 total)