Viewing 15 posts - 7,891 through 7,905 (of 13,876 total)
nileshbgp123 (11/18/2015)
November 18, 2015 at 2:09 am
anthony.green (11/18/2015)
Phil Parkin (11/18/2015)
I would think of using Change Tracking.Always forget about CDC, just one of them things I have never used so never crosses my mind.
I've used it...
November 18, 2015 at 2:01 am
This will help others. I've taken the query, removed the spurious additional spaces and reformatted it:
create view INV_SUPPLY
as
(select RRN(BAL) as SEQ
...
November 18, 2015 at 1:17 am
johnwalker10 (11/17/2015)
Using MERGE is your best option. You can control each of the conditions
I can't see MERGE working in a two-way sync solution, unless there are never any deletions and...
November 18, 2015 at 12:24 am
OK, I wrote a simple SSIS package to try this out.
My solution uses the code from this page, without modification.
I added a package parameter called FilePath, which I set to...
November 17, 2015 at 10:37 am
MadAdmin (11/17/2015)
John Mitchell-245523 (11/17/2015)
The FROM needs to appear at the end of your column list.
He is using the old ansi-89 style joins.
SELECT
tm.task_id
FROM
task_mstr...
November 17, 2015 at 10:08 am
cjefferson (11/17/2015)
November 17, 2015 at 10:03 am
You could try using OPTIMIZE FOR ...
You could also consider adding trace flag 9481 to your problematic queries, at least in the short term.
November 17, 2015 at 7:20 am
Bouke Bruinsma (11/17/2015)
select * from t1 join t2 on t1.id = t2.id
t1 is a table with only column id with a user defined statistic with...
November 17, 2015 at 7:14 am
Ratheesh.K.Nair (11/17/2015)
Hi Experts,Is there anyway to sync few tables of two live databases which are hosted in different servers?
TIA
Is that a two-way sync?
November 17, 2015 at 3:34 am
vipin_jha123 (11/17/2015)
It is having Numeric data type
Only because that is what is assigned to it by SSIS. You can change this.
But I say again: flat file columns have no (explicit)...
November 17, 2015 at 12:36 am
Data in flat files does not have a data type.
November 17, 2015 at 12:17 am
Luis Cazares (11/16/2015)
Phil Parkin (11/16/2015)
There was a problem with your final LIKE. '%%' does not mean anything more than '%', which in turn means anything or nothing.
Anything or nothing that...
November 16, 2015 at 1:46 pm
David Tooker (11/16/2015)
I need to use a Like statement with an Or statement in a where clause. below is what I am trying to do and the @ProjectType can...
November 16, 2015 at 1:26 pm
OK, now I understand better. I get round that limitation (as suggested in previous posts) in a different way:
use SSISDB
go
exec catalog.set_environment_variable_value @folder_name = N'_environments', -- nvarchar(128)
@environment_name...
November 16, 2015 at 1:04 pm
Viewing 15 posts - 7,891 through 7,905 (of 13,876 total)