Viewing 15 posts - 136 through 150 (of 237 total)
No You can't use the dynamic sql in the functions
November 22, 2010 at 1:30 am
Thanks to Jeff and eralper on your valuable Inputs.
November 22, 2010 at 1:26 am
Nice Question, i got it right because recently i faced this kind of situation in one of my package.
i am looking forward to here more on "Mastering SSIS".
November 22, 2010 at 12:12 am
Eralper (11/21/2010)
Also it will be better I guess to disable indexes (delete...
November 21, 2010 at 11:58 pm
For analsyis it is alwasy better to have the OLAP (DW) database where you will have your fact tables and dimension tables. From this database you will need to create...
November 20, 2010 at 2:57 am
My Vote is For C# as it is much eaiser and suppots fully OOP Concepts and close to any other OOP Language.
November 19, 2010 at 8:04 am
i don't think it is possible to get the name of the Container in the script task. Why don't you put the name in the variable it self and then...
November 19, 2010 at 6:12 am
Ya that's what the above solution gives.
In your dataflow task's oledb source select the data access mode as sql comman and
add the sql Command text and where ever you...
November 19, 2010 at 3:39 am
Nice Question.Generally we will prefer to create the table first and then try to insert into it in these case.
November 18, 2010 at 1:48 am
INSERT INTO ta1_Filter(CODE,CENTER)
SELECT CODE,CENTER from [dbo].[Main]
WHERE CENTER IS NOT Null
AND CODE like 'SC001'
I hope this is what you were looking for and it works.
No, the second filer is...
November 17, 2010 at 8:56 am
The One Approach that i know is to dump the csv file into the temp table and then use the execute sql task, where you can write a Query to...
November 15, 2010 at 5:17 am
SELECT [Month] = DATENAME(mm,SomeDateTime),Year(Somedatetime),
Amount = SUM(SomeAmount)
FROM #MyHead
GROUP BY DATENAME(mm,SomeDateTime),Year(Somedatetime)
ORDER BY CAST(DATENAME(mm,SomeDateTime) + '...
November 15, 2010 at 4:11 am
I Think it is your Sql server Management studio setting problem
in SSMS just go to
Tools --> Options --> Query Results --> Results to Grid --> Max characters Retrieved...
November 15, 2010 at 2:29 am
By the way your Print Function has limitation to Print the charecters i guess it is 8000
November 15, 2010 at 12:22 am
Hey you can use
varchar(max) or nvarchar(max)
Please avoid using text and ntext as these will not be available in the latest versions of the sql server
Can refer :
November 15, 2010 at 12:17 am
Viewing 15 posts - 136 through 150 (of 237 total)