Viewing 15 posts - 16 through 30 (of 49 total)
Ya that's correct for each loop wil work,
But my question is that within US zone I have 2 different source
out of 3 DFT 2 DFT have same source and 3rd...
July 29, 2015 at 4:53 am
Hi ,
I am unable to start to create the script for 3rd table, it has multiple foreign key.
kindly review the script of first 2 table and help me create the...
July 27, 2015 at 1:29 am
CREATE TABLE [dbo].[md_geographylevel](
[type_key] [int] NOT NULL,
[geog_key] [int] NOT NULL,
[Type_description] [nvarchar](50) NULL,
[Store_flag] [nvarchar](10) NULL,
[Type_short_desciption] [nvarchar](50) NULL,
[Type_long_desciption] [nvarchar](100) NULL,
PRIMARY KEY CLUSTERED
(
[type_key] ASC,
[geog_key] ASC
)
CREATE TABLE [dbo].[md_geographyleveltype](
[type_key] [int] NOT NULL,
[Type_description] [nvarchar](50) NULL,
[Store_flag] [nvarchar](10)...
July 27, 2015 at 12:50 am
What if out form both statement comes from 2 different table.
Regards,
Vipin jha
June 12, 2015 at 2:16 am
Hi ,
I have used below expression betting getting issue with that
(DT_STR, 4, 1252) DATEPART("yyyy" , @[User::migration_start]) + "-" + RIGHT("0" + (DT_STR, 2, 1252) DATEPART("mm" , @[User::migration_start]),...
June 11, 2015 at 5:11 am
Hi ,
You can simple load your data into temp table
tempo table must have only 3 column.
loadid,col001 and load_date
then process your data from temp table to main table by the...
June 7, 2015 at 11:28 pm
Hi ,
Sample data are below :-
06/06/63
09/17/61
06/03/69
11/23/64
07/10/90
02/02/69
09/30/70
12/05/49
01/04/67
Regards,
Vipin jha
May 21, 2015 at 2:51 am
Hi According to me Checkpoint is used to restart the package from the point point where it fail.
so u can seee that when your package failed one files are getting...
May 13, 2015 at 3:23 am
Hi ,
It was a problem with the length of column.
i increased the length of column and now running fine.
regards,
Vipin jha
May 12, 2015 at 2:49 am
I think you dropping an creating the table at every run , and you probably missing the table creation step
May 11, 2015 at 3:00 am
Ok,
Is there any alternate of merge where i should not get issue with duplicate record in source if found.
April 24, 2015 at 2:59 am
yes true, but if in case we duplicate bbxkey come in source then how to avoid this .
April 24, 2015 at 2:23 am
Got the answer
issue with the exec
correct one is Exec (@sSQL)
April 19, 2015 at 11:38 pm
Hi,
I want below Output from above command
insert into staging_temp_1
select dbo.fnGetFirstOcurrences(col001, '¯',@Columns),LoadDate from staging_temp
April 10, 2015 at 3:58 am
Viewing 15 posts - 16 through 30 (of 49 total)