Skip to main content
Filter by
Sorted by
Tagged with
0 votes
1 answer
138 views

Is the following possible in Azure Data Factory? I have a column whose value is the name of another column, and it's the value of that column that I'd like to copy into a new derived column. e.g. I ...
Gordon Little's user avatar
0 votes
1 answer
51 views

I am trying to load data to a SQL table using SSIS package. Text file has date columns in the format yyyymmdd, the SQL table has datatype set to date (has to remain as date), but when I'm using a ...
Dont_know's user avatar
0 votes
1 answer
36 views

a source flat file has duration columns in :00:00 format as well as 0:00:00 format. Trying to convert to seconds when there's no leading zeros in the hours. Sample of the Source file when viewed in ...
Dont_know's user avatar
1 vote
1 answer
58 views

I have source data in a flat file that is a whole number preceded by either a positive or negative symbol. For example, +0012345 or -0012345, the first value would be translated to 123.45 while the ...
SidC's user avatar
  • 3,199
0 votes
1 answer
418 views

I've got a blob container of tab delimited files that I'm trying to automate to import to am azure SQL database. One table per file Every source file has a different schema. I've got a for each loop ...
yonabout's user avatar
  • 107
0 votes
1 answer
935 views

I have the following problem in a Data Factory data flow: I have two pipelines that extract data: one daily on weekdays, and one monthly on the first working day of each month. In the data flow I ...
fabio.sitzia's user avatar
0 votes
2 answers
643 views

I am performing some transformation to create a derived column using SSIS derived column transformation task This column "Column" to be rounded 2 decimal and put space in front. I am using ...
AnS's user avatar
  • 1
1 vote
3 answers
175 views

How do I modify the column having 2,4,5 as values to 2=active, 4=closd, and 5=inactv in SSIS derived column? (SQL Server DB) I'm expecting the column should show values. 'active' instead of '2' 'closd'...
Dheeraj's user avatar
  • 19
1 vote
1 answer
2k views

I have a situation where I am getting dates in two separate formats, MM/dd/yyyy & yyyy-dd-MM, AND there might be even more different formats as well in csv which will be obviously in string. Below ...
thesacredkiller's user avatar
0 votes
0 answers
137 views

I have a ssis package which gets data from sql and dumps to CSV file. There are half a million of rows and almost 100 columns and when i dump the data to Flat file destination, some of the column ...
TheSacredKiller's user avatar
0 votes
0 answers
357 views

Using ODBC Source to read data from Hadoop and insert them in OLE DB destination. Performing conversion operations on various columns using derived column on various column. I have Column "...
user6787720's user avatar
0 votes
2 answers
89 views

The initial dataset I am working with is a list of tarnatula prices overtime from two shops, one based in Canada and the other in Poland. In order to make a fair comparison between the two shops, I ...
Bex Middleton's user avatar
3 votes
1 answer
901 views

I am very new to SSIS and I am performing a task where I have to take the flat-file text document and then derive the columns with specific digit lengths. For eg, lines in the text document are: ...
sarcastic reality's user avatar
2 votes
1 answer
283 views

I've got a CASE statement that works, but because I have to do it in SSIS, I am at a loss: SELECT [BPCNUM_0], TYPE, CASE WHEN [TYPE]=1 THEN 'Normal' WHEN [TYPE]=2 THEN 'Divers' WHEN [...
chaneb's user avatar
  • 67
1 vote
2 answers
331 views

I'm working trying to convert a string data type to a date that does not contain 0's in the string of the month and day part and need to convert it into a date format yyyy-MM-dd, anything that is a ...
HappyCoder123's user avatar
1 vote
1 answer
385 views

I am mapping data between my oracle table to the Azure SQL DB table. I need to map the name field from the Source which is like below Name AX1 BD A1 12 BC W1 In to source, I need to just map the ...
user4912134's user avatar
  • 1,053
-1 votes
1 answer
2k views

ISNULL([1 (Q1_1) ])? "": [1 (Q1_1) ] When I drag the column under the Columns box in the top left, that's how my column appears, [1 (Q1_1) ]. Why is my expression not working? I want to ...
Chicken Sandwich No Pickles's user avatar
0 votes
1 answer
689 views

I want to add the timestamp of copying parquet files to my dataframe in data flow as a derived column. In source module I can filter parquet files by last modified which makes me think that it should ...
ARCrow's user avatar
  • 1,867
0 votes
1 answer
721 views

I am building a data flow within azure data factory and I would like to apply some GDPR masking rules within the flow. What I would like to do is the following: In the Derived Column (or other ...
mattssok's user avatar
-1 votes
1 answer
66 views

I have data as follows: +----+--------+------------------+ | Id | Weight | is_weight_faulty | +----+--------+------------------+ | A | 100 | 1 | | A | 50 | 0 | | ...
Lopez's user avatar
  • 394
0 votes
2 answers
2k views

I am working in SSIS to fill a staging area database. I want to transfer the following data: ------------------------------------------------------------------- | ShipName (String) | MaxContainers (...
MissionarisMalleman's user avatar
0 votes
1 answer
74 views

Could you please guide I have a scenario where credit_Date,debit_date and loan_date can have different values of date or same. Output table have below columns Date: should combine credit_date, ...
smp97's user avatar
  • 63
0 votes
1 answer
153 views

Could you please guide. Input table (Table1) have columns like credit_date, credit_amount, debit_date, debit_amount, loan_date, loan_amount. Output table(Table 2) have columns like date, ...
smp97's user avatar
  • 63
1 vote
1 answer
1k views

Could you please help me below query. Suppose there is table employee and columns A , B and Date column. I have to load data from table employee to another table emp with below transformation applied ...
smp97's user avatar
  • 63
2 votes
2 answers
6k views

I have a fixed format .txt file which has a date field. This field may have a date or be blank. I have wracked my brains to get this field to convert from DT_STR to DT_DBDATE in the Derived Column ...
Brad G.'s user avatar
  • 21