Viewing 15 posts - 7,021 through 7,035 (of 13,876 total)
SQL!$@w$0ME (6/21/2016)
I have a requirement for a table refresh (truncate/load) that needs to happen daily from Oracle to SQL. The table is relatively small. What is the best approach...
June 21, 2016 at 9:01 am
1) Create a connection from SSIS server to the Citrix server.
2) Set up data flow component (or whatever means you want to use to transfer the data)
3) Run package.
June 21, 2016 at 6:39 am
Johan_1975 (6/21/2016)
We're Tuesday. It's important for what's coming.
I encountered an issue on the DATENAME function and need some help.
If I type :
SELECT DATEPART(dw,GETDATE())
It returns 2 (for Tuesday)
If I type...
June 21, 2016 at 6:37 am
Well done for tackling this topic, Andy.
I use SSISDB environments a lot, but have never used parameter overrides. Do you have a view on when they should be used in...
June 21, 2016 at 6:23 am
If you choose a pipe-delimited flat file, you won't go too far wrong (assuming there is no possibility of a pipe (|) appearing in the data you are loading.
June 21, 2016 at 6:04 am
Luis Cazares (6/17/2016)
Considering example 1.00 / 7.1 we just get the formulas.
p = p1 - s1 + s2 + max(6, s1 + p2 +...
June 17, 2016 at 2:03 pm
Nice example, Luis.
One thing which is unclear to me in all this is how SQL Server determines precision and scale for a given calculation. For example
1.00 / 7.1
which, according to...
June 17, 2016 at 1:49 pm
cstg85 (6/17/2016)
Thank you very much for the advice, I used SQL queries in my SSIS package instead of a merge join and created a static table to be truncated each...
June 17, 2016 at 12:08 pm
sunil.mvs (6/17/2016)
Thanks for looking into my question. I am rephrasing my question to make you to understand
How to use TFS , to...
June 17, 2016 at 12:06 pm
neophilius (6/17/2016)
I have to consume a Rest API where we have our survey data. Here I want to save the data in my database and update the data every night....
June 17, 2016 at 8:54 am
Should I just create a table that exists out there all the time and truncate each time the job is run?
Yes, that an easy and robust way.
Or will an SSIS...
June 17, 2016 at 8:14 am
franklinkeith (6/17/2016)
static number (12345) + ID number
This is somewhat terse – what is your question, exactly?
June 17, 2016 at 6:20 am
komal145 (6/15/2016)
my package is something like below
Stage(Column1 , column2)
|
|
Lookup1(get Column1key1)
|
|
Lookup2(get Column2key2)
|
|
Destination (...
June 15, 2016 at 5:01 pm
The standard way of doing this is to load your data into a staging area and then to do a MERGE (which is potentially less expensive than DELETE/INSERT) into the...
June 15, 2016 at 4:01 pm
Viewing 15 posts - 7,021 through 7,035 (of 13,876 total)