Viewing 15 posts - 1 through 15 (of 17 total)
Thanks guys but this is not what i was looking for. I know how cross tabs and pivots work.
I actually managed to solve the problem using SQL Server Reporting Services
The...
August 25, 2008 at 5:50 am
THANK YOU SO MUCH CHRIS, it works now, really appreciate it!!!
July 30, 2008 at 5:17 am
Yes you can, i have used the lookup before to check for existing records when updating dimension tables, however, whenever the package is run again, if the record exists the...
February 9, 2008 at 3:10 pm
I am not sure if I understand you. When you create lets say a flat file destination and you define a connection manager using an expression the file wouldn't be...
February 9, 2008 at 3:05 pm
Thanks!
Oracle is stable and thats it, apart from that its not worth the hype!!!!
BTW - I think that Microsoft have hit the jack pot with there strategy of making their...
January 16, 2008 at 6:57 am
DONE IT!
here is the syntax:-
"SELECT * FROM schema_name.table_name
PARTITION (name_rest01" + right((DT_WSTR,20)month(dateadd("mm",-1,getdate())),2) +
right((DT_WSTR,50)Year(dateadd("mm",-1,getdate())),2) +")"
and here is the result:-
SELECT * FROM schema_name.table_name
PARTITION ( name_rest011207)
January 14, 2008 at 11:22 pm
Thanks for the quick response!
There is a problem with the result since it will evaluate to
SELECT * FROM schema_name.table_name
PARTITION name_rest011207
Now this query is meant to work with an...
January 14, 2008 at 11:18 pm
Hi again,
I managed to modify peter's expression to cater for the case when data for a given month is not available till the begining of the next month as follows:-
"select...
January 2, 2008 at 12:39 am
THANKS ALOT PETER! The expression works great!!! Appreciate it!
January 1, 2008 at 10:04 pm
Expression="SELECT " +
RIGHT("0" + (DT_WSTR, 2)MONTH(GETDATE()), 2) +
RIGHT((DT_WSTR, 4)(YEAR(GETDATE())), 2)
(Replace)
I receive an error on the expression shown above. The Right function takes two parameters. One is the character...
December 31, 2007 at 7:28 am
sp_rename only works with SQL Server and my source is an oracle databse and I need to build an expression with the source to change table name everytime so I...
December 31, 2007 at 1:30 am
This is very weired, however, without me doing anything other than switching from SQL query view to table view and back and then clicking on the mappings tab and it...
December 26, 2007 at 5:50 am
DONE IT!
Here's the solution for anyone interested!
Basically add a user variable at the package level and then use the expression editor of the message source in the send mail task....
December 2, 2007 at 9:37 am
Your comments are highly valued! I have actually done the following:-
(1) I am extracting data from an accounting system using SSIS and loading it into a SQL Server 2005 mini-datawarehouse
(2)...
November 22, 2007 at 10:29 am
Viewing 15 posts - 1 through 15 (of 17 total)