Viewing 15 posts - 7,021 through 7,035 (of 13,876 total)
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
Are the MERGE statements going in both directions? I mean, are there queries on server A that update server B and vice versa?
If the updates are only from server A...
June 15, 2016 at 10:51 am
tmmutsetse (6/15/2016)
June 15, 2016 at 8:24 am
tmmutsetse (6/15/2016)
SiteName HostName Freespace FreeSpacePerc Color TotalMemory ...
June 15, 2016 at 8:08 am
george sibbald (6/15/2016)
This is because if the execution of a stored procedure is not the only statement in the batch, you need to add...
June 15, 2016 at 6:56 am
Viewing 15 posts - 7,021 through 7,035 (of 13,876 total)