Viewing 15 posts - 7,906 through 7,920 (of 13,882 total)
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
Mike01 (11/16/2015)
SET...
November 16, 2015 at 12:04 pm
Not sure whether this will work for you, but I do something similar.
I have a project deployed to SSISDB and have configured it so that certain params in the project's...
November 16, 2015 at 11:26 am
dbman (11/16/2015)
Hello,Thanks for reply. I have tried that previously on all columns and its still not importing.
Regards
Not all columns. I am talking specifically about the single column in your...
November 16, 2015 at 9:16 am
dbman (11/16/2015)
I have developed an SSIS package whereby a file is split into a number of tables. I have a conditional split, derived column and data conversion task.
The file is...
November 16, 2015 at 8:49 am
This bit
but VhID and PrID can be the same in one row so long as ExtID is different
Needs to be elucidated.
I read it as
There can be only one row where...
November 16, 2015 at 6:35 am
(1) and (2) – create 2 unique indexes.
(3) needs a little more explanation. Are you saying that it's OK for
VhID ==PrID
and
PrID != ExtID
but only on a single...
November 16, 2015 at 5:09 am
Work from the outside in, loading the tables with no dependencies first. The fact table comes last.
Why? Because the tables closer to the fact tables depend on the existence of...
November 15, 2015 at 2:46 pm
Try
Select top 1 @Var = Col
November 15, 2015 at 4:35 am
Viewing 15 posts - 7,906 through 7,920 (of 13,882 total)