Viewing 15 posts - 61 through 75 (of 192 total)
You can also just use a derived column component. I often do that as I build a package and put a dataviewer on the pipeline so I can keep an...
September 24, 2008 at 8:25 am
Hi Renato,
My suggestions are more architectural than anything as I don't know how you can proceed with package execution in the parent based on selective errors in the child (If...
September 22, 2008 at 7:35 am
Hi,
Setting up a linked server is a way in which you can execute queries against distributed databases.
So if you have say an Oracle database that handles your call centre operational...
September 19, 2008 at 8:32 am
Hi,
You could set up your workbook as a linked server, or just use a distributed query
INSERT INTO MySQLTable
SELECT *
FROM OPENROWSET('Microsoft.Jet.OLEDB.4.0', 'Excel 8.0;Database=c:\MyWorkbook.xls', MyDatasheet$) xl
HTH
September 19, 2008 at 3:46 am
Unfortunately, if you don't have the option of saving dtsConfig files in test/qa/prod folders, you are going to find it hard to set up your SQL server configurations. An XML...
September 18, 2008 at 9:48 am
Hi,
I don't particularly like the deployment utility as it tries to do things that you don't necessarily expect.
I ended up writing a generic package which loops through a folder...
September 18, 2008 at 8:56 am
Don't forget there are a whole bunch of dynamic views and functions in SQL2K5 which can give you a lot of useful info.
sys.dm_exec_query_stats
sys.dm_exec_requests
sys.dm_db_index_usage_stats
sys.dm_db_index_physical_stats()
just to name a few... worth checking these...
September 18, 2008 at 6:36 am
In some circumstances using SQL can be the right way to go, but I reckon that in this example performing the logic in the dataflow will prove quicker.
What you're effectively...
August 29, 2008 at 7:36 am
Hi Kajal,
If you do a google search on "SSIS Pivot" you will find there are quite a number of articles dedicated to this subject.
Why don't you have a look through...
August 29, 2008 at 3:52 am
In which case, your lookup query was correct and you just need to adjust the expression downstream. (TRIM(CUST_AGRMNT_NUM) == "")||(ISNULL(CUST_AGRMT_NUM))? "Y":"N"
Hope this helps
August 29, 2008 at 3:06 am
Hi Riga,
I think my post wasn't clear enough and so I'll try to answer each point 1 by 1.
I decided to stage data into STAGE_DDA_REV_ADJ table
because I need to see...
August 28, 2008 at 3:44 am
Hi,
If you want to use a table function as a source in SSIS then you will need to use a SQL command from a variable.
Use an expression to derive the...
August 27, 2008 at 6:27 am
This is always a problem with Excel and there is no tidy way to do this.
If you don't have a way to descriminate between the records, you could add a...
August 26, 2008 at 3:42 pm
update REVADJ.txt data
set valid='Y'
from
REVADJ.txt STG,
INNER JOIN cis_account cur
ON
cur.cur_acct_num = STG.cur_acct_num
and STG.cust_agrmnt_num is NULL
In this example I'd say that your best bet is the...
August 26, 2008 at 3:05 pm
I have to agree on both the points above which may leave you wandering why I said what I said. Apologies in advance for the long ramble...
I agree that...
August 26, 2008 at 9:45 am
Viewing 15 posts - 61 through 75 (of 192 total)