How to select the data held within a specific partition
up vote
0
down vote
favorite
When inserting data into a partitioned managed table, integrity violations can be moved to a named partition per the following syntax:
INSERT INTO PartitionedTable
ON INTEGRITY VIOLATION MOVE TO PARTITION ("UNKNOWN")
SELECT Col1,
Col2,
PartitionCol
FROM @data;
Once in this UNKNOWN
partition, is it possible to address it specifically in order to move it to a newly created partition or interrogate exactly which data has caused the problems, without comparing the data held within the entire table to the full list of available partitions on the table already?
azure-data-lake u-sql
add a comment |
up vote
0
down vote
favorite
When inserting data into a partitioned managed table, integrity violations can be moved to a named partition per the following syntax:
INSERT INTO PartitionedTable
ON INTEGRITY VIOLATION MOVE TO PARTITION ("UNKNOWN")
SELECT Col1,
Col2,
PartitionCol
FROM @data;
Once in this UNKNOWN
partition, is it possible to address it specifically in order to move it to a newly created partition or interrogate exactly which data has caused the problems, without comparing the data held within the entire table to the full list of available partitions on the table already?
azure-data-lake u-sql
add a comment |
up vote
0
down vote
favorite
up vote
0
down vote
favorite
When inserting data into a partitioned managed table, integrity violations can be moved to a named partition per the following syntax:
INSERT INTO PartitionedTable
ON INTEGRITY VIOLATION MOVE TO PARTITION ("UNKNOWN")
SELECT Col1,
Col2,
PartitionCol
FROM @data;
Once in this UNKNOWN
partition, is it possible to address it specifically in order to move it to a newly created partition or interrogate exactly which data has caused the problems, without comparing the data held within the entire table to the full list of available partitions on the table already?
azure-data-lake u-sql
When inserting data into a partitioned managed table, integrity violations can be moved to a named partition per the following syntax:
INSERT INTO PartitionedTable
ON INTEGRITY VIOLATION MOVE TO PARTITION ("UNKNOWN")
SELECT Col1,
Col2,
PartitionCol
FROM @data;
Once in this UNKNOWN
partition, is it possible to address it specifically in order to move it to a newly created partition or interrogate exactly which data has caused the problems, without comparing the data held within the entire table to the full list of available partitions on the table already?
azure-data-lake u-sql
azure-data-lake u-sql
asked Nov 19 at 12:52
iamdave
7,77121338
7,77121338
add a comment |
add a comment |
active
oldest
votes
active
oldest
votes
active
oldest
votes
active
oldest
votes
active
oldest
votes
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53375058%2fhow-to-select-the-data-held-within-a-specific-partition%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown