Hello,
I have 2 SSIS packages. Basicaly they do the same thing except Package_1 is using configuration file and Package_2 doesn't.
Configuration file has 3 variables, Extract_Start_date, Extract_End_date, and Historical_load, depending on Historical_load value StartDate and EndDate get value...
...any error.
Please see the creation of the tables script and update script below :
Any help greatly appreciated.
Thanks
IF exists (
SELECT * FROM tempdb.dbo.sysobjects o
WHERE o.xtype IN ('U')
AND o.id = OBJECT_ID(N'tempdb..##PI_CC_CreditLimitChngAccounts')
)
DROP TABLE...
Thanks Borislav
As I mentioned this is the birth date field. If we get someone birtdate in after 2000. Date will be something like 15-Jan-01.
then this approach wont work :-(
...from another tables in server1 then load the table in server2
In SSIS I created temptable using Execute SQL Task Editor.
IF exists (
SELECT * FROM tempdb.dbo.sysobjects o
WHERE o.xtype IN ('U')
AND o.id = OBJECT_ID(N'tempdb..##PI_CC_CreditLimitChngAccounts')
)
DROP TABLE...
Hi All,
I have dimension table as you see in the picture.
District_Key is the key joining the fact table. But I like to create a hierarchy with New_DVP column and summarize the measure based on the New_DVP.
Can anyone help me for this?
Thanks...
Hi All,
I have a .csv file (, separated) which I read into the SQL server, but there is a value like "Manitoulin, Unorganized, West Part". Because of the ,s in the value SSIS put each word into next field.
Is there any way to put whole value into the one field?
Thanks
Hello,
How can I convert Null or empty datetime value to default datetime value ("1900-01-01") using SSIS derived column transformation in SSIS?
I need to check both empty or Null date values.
Thanks
Hello,
There is a key in my fact table which I don't want to show them in the cube.
I mean I redirect some values as a -1 key (N/A) in fact table.
In dimension table -1--> N/A.
I am trying to hide those N/A values in the dimension to not to show them to the user.
Any suggestion?
Thanks...
Hi Olaf,
Thank you very much for your help.
I am using below script and it seems working :)
;with cte as
(SELECT a.[ApplicationID]
, a.[DecisionTypeDetailDate]
, SUM(ConVert(Int,b.[ResubmitTOD])) AS ResubFreqTOD
, SUM(ConVert(Int,b.[ResubmitTOS])) AS...
Hi Olaf,
Please see the screen shot to see the error messages. It works in server 2012 but not in 2008 R2.
I need to do this in server 2008.
Also this is just an example data I need to order by DATE and ID
Please...
Hello,
I need to increase a counter for each changed rows in SQL query .
I have a column holds values 0 or 1. Id like to create a new column based on the column C which holds 0 or 1. If the value is 0 then my new value will be 0 if it is 1 then my new column value at the first 1 then for the...
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.