Ultimate access to all questions.
Upgrade Now 🚀
Sign in to unlock AI tutor
Which SQL command will download all data files from the internal table stage named TBL_EMPLOYEE to a local Windows directory on the client machine in a folder named "folder with space" located on the C drive?
TBL_EMPLOYEE
A
GET @%TBL_EMPLOYEE 'file://C:\folder with space';
B
GET @%TBL_EMPLOYEE 'file://C:/folder with space/';
C
PUT 'file://C:\folder with space*' @%TBL_EMPLOYEE;
D
PUT 'file://C:/folder with space/*' @%TBL_EMPLOYEE;