Viewing 15 posts - 7,981 through 7,995 (of 13,876 total)
Thanks Steve, I didn't know about this. Very useful.
October 28, 2015 at 4:43 am
shkoli (10/27/2015)
[ManagementId] [int] NOT NULL,
[FTAManagementNo] [varchar](35) NULL
)
CREATE TABLE [dbo].[MgmtCountries](
[MgmtCountryId] [int] not null,
[CountryId] [int] null,
[ManagementId] [int] null ,
[FTAManagementNo] [varchar](35) NULL
)
i want to get only those ManangementId which is available...
October 28, 2015 at 1:14 am
Have a read here and see whether that helps you at all.
October 27, 2015 at 9:48 am
Even negatives can be coded in a positive way, to help avoid possible double-negative mistakes.
Rather than 'IsInactive', I'd use 'IsDead' or similar.
October 27, 2015 at 6:16 am
I also recommend SQL Compare, though if your databases are developed using VS DB projects, there is a Schema Compare tool built in.
October 27, 2015 at 6:11 am
Check the mappings on your OLEDB destination.
Each of the derived columns should map to its target column.
October 26, 2015 at 4:59 am
Your fact key columns should always have matching entries in their associated dim tables, even if that entry is -1 (unknown, N/A, or whatever default you choose).
Once you have this...
October 26, 2015 at 4:28 am
sqlbaby2 (10/26/2015)
I've data as below
account period01 period02 period03 period04
1111 null ...
October 26, 2015 at 3:29 am
It's a warning, not an error. If you're happy with the suggested alternative, just go ahead.
October 25, 2015 at 12:15 pm
Why use DATEPART(), when you can use YEAR() for this?
October 24, 2015 at 9:56 am
Change it to don't save sensitive and redeploy
October 24, 2015 at 3:03 am
david.dilworth (10/23/2015)
October 23, 2015 at 6:24 am
Jayanth_Kurup (10/23/2015)
No; its not in memory its create a local cache file on the same server as SSIS so it improves the speed with which the lookup happens.
You are wrong...
October 23, 2015 at 4:37 am
Hawkeye112 (10/23/2015)
I have a really simple Data Flow Task with a Lookup Task in it. If I run the Task with Full Cache (inmemmory) all my records will be directed...
October 23, 2015 at 2:57 am
I am definitely in the 'IsActive', 'IsCurrent' camp.
October 23, 2015 at 1:54 am
Viewing 15 posts - 7,981 through 7,995 (of 13,876 total)