What kind of task should be added to an SSIS package if you want to download a data file from an FTP site?
A. data flow
B. data preparation
C. workflow
D. SQL Server
Answer: B
You might also like to view...
In the classic pattern for ____-state behavior, an object can switch from one state to another.
A. one B. two C. three D. four
Which of the following statements is false?
a. Variables store values for later use in your code. b. The following statement creates x and uses the assignment symbol (=) to give x a value. x = 7 c. Every statement stops at the end of the line in which it begins. d. Once x and y are created and assigned values, you can use the values in ex-pressions like: x + y
You can type a new caption under a picture, but you cannot delete a caption or move it without deleting or moving the picture associated with the caption
Indicate whether the statement is true or false
Which of the following correctly declares and initializes alpha to be an array of four rows and three columns with the component type int?
A. int alpha[4][3] = {{0,1,2} {1,2,3} {2,3,4} {3,4,5}}; B. int alpha[4][3] = {0,1,2; 1,2,3; 2,3,4; 3,4,5}; C. int alpha[4][3] = {0,1,2: 1,2,3: 2,3,4: 3,4,5}; D. int alpha[4][3] = {{0,1,2}, {1,2,3}, {2,3,4}, {3,4,5}};