Complete the code to create an internal stage named 'mystage'.
CREATE STAGE mystage [1];Internal stages are created using the keyword INTERNAL.
Complete the code to create an external stage using an S3 bucket named 'mybucket'.
CREATE STAGE mystage URL='s3://[1]';
The URL for an external stage must point to the correct S3 bucket name.
Fix the error in the code to create an external stage with AWS credentials.
CREATE STAGE mystage URL='s3://mybucket' CREDENTIALS=([1]='AKIA...');
The correct credential key for AWS access key is AWS_ACCESS_KEY_ID.
Fill both blanks to create an external stage with AWS credentials and region.
CREATE STAGE mystage URL='s3://mybucket' CREDENTIALS=([1]='AKIA...', [2]='us-west-2');
Use AWS_ACCESS_KEY_ID for the access key and AWS_REGION for the region.
Fill all three blanks to create an external stage with AWS credentials, region, and file format.
CREATE STAGE mystage URL='s3://mybucket' CREDENTIALS=([1]='AKIA...', [2]='secretkey123') FILE_FORMAT = (TYPE = [3]);
Use AWS_ACCESS_KEY_ID and AWS_SECRET_KEY for credentials, and specify 'CSV' as the file format type.