oracle conversion variable value to sequence name
.everyoneloves__top-leaderboard:empty,.everyoneloves__mid-leaderboard:empty,.everyoneloves__bot-mid-leaderboard:empty{ margin-bottom:0;
}
please can someone help me? I want to call a sequence from a variable (seq_x
) as in the code but I cannot.
if :op.qt is not null then
select BATCH_X_SEQ into seq_x from kbatchseq where batch_x_name=:op.batch_name_fin;
select kbatch_seq.nextval into batch_number from dual;
select seq_x.nextval into batch_seq from dual;
select to_char(sysdate,'yy') into bat_date from dual;
oracle oracle-9i
bumped to the homepage by Community♦ 5 mins ago
This question has answers that may be good or bad; the system has marked it active so that they can be reviewed.
add a comment |
please can someone help me? I want to call a sequence from a variable (seq_x
) as in the code but I cannot.
if :op.qt is not null then
select BATCH_X_SEQ into seq_x from kbatchseq where batch_x_name=:op.batch_name_fin;
select kbatch_seq.nextval into batch_number from dual;
select seq_x.nextval into batch_seq from dual;
select to_char(sysdate,'yy') into bat_date from dual;
oracle oracle-9i
bumped to the homepage by Community♦ 5 mins ago
This question has answers that may be good or bad; the system has marked it active so that they can be reviewed.
You want to get the next value of a sequence from a sequence, with the sequence name given dynamically?
– Philᵀᴹ
Jan 13 '16 at 13:27
I want to call the sequence.nextval from the contents of a variable
– aminezergui
Jan 14 '16 at 7:41
add a comment |
please can someone help me? I want to call a sequence from a variable (seq_x
) as in the code but I cannot.
if :op.qt is not null then
select BATCH_X_SEQ into seq_x from kbatchseq where batch_x_name=:op.batch_name_fin;
select kbatch_seq.nextval into batch_number from dual;
select seq_x.nextval into batch_seq from dual;
select to_char(sysdate,'yy') into bat_date from dual;
oracle oracle-9i
please can someone help me? I want to call a sequence from a variable (seq_x
) as in the code but I cannot.
if :op.qt is not null then
select BATCH_X_SEQ into seq_x from kbatchseq where batch_x_name=:op.batch_name_fin;
select kbatch_seq.nextval into batch_number from dual;
select seq_x.nextval into batch_seq from dual;
select to_char(sysdate,'yy') into bat_date from dual;
oracle oracle-9i
oracle oracle-9i
edited Jan 13 '16 at 17:09
dezso
22.6k116097
22.6k116097
asked Jan 13 '16 at 13:19
aminezerguiaminezergui
11
11
bumped to the homepage by Community♦ 5 mins ago
This question has answers that may be good or bad; the system has marked it active so that they can be reviewed.
bumped to the homepage by Community♦ 5 mins ago
This question has answers that may be good or bad; the system has marked it active so that they can be reviewed.
You want to get the next value of a sequence from a sequence, with the sequence name given dynamically?
– Philᵀᴹ
Jan 13 '16 at 13:27
I want to call the sequence.nextval from the contents of a variable
– aminezergui
Jan 14 '16 at 7:41
add a comment |
You want to get the next value of a sequence from a sequence, with the sequence name given dynamically?
– Philᵀᴹ
Jan 13 '16 at 13:27
I want to call the sequence.nextval from the contents of a variable
– aminezergui
Jan 14 '16 at 7:41
You want to get the next value of a sequence from a sequence, with the sequence name given dynamically?
– Philᵀᴹ
Jan 13 '16 at 13:27
You want to get the next value of a sequence from a sequence, with the sequence name given dynamically?
– Philᵀᴹ
Jan 13 '16 at 13:27
I want to call the sequence.nextval from the contents of a variable
– aminezergui
Jan 14 '16 at 7:41
I want to call the sequence.nextval from the contents of a variable
– aminezergui
Jan 14 '16 at 7:41
add a comment |
1 Answer
1
active
oldest
votes
I am not sure what you mean but I assume it is this one:
EXECUTE IMMEDIATE `select '||seq_x||'.nextval from dual` INTO into batch_seq;
I hope EXECUTE IMMEDIATE
was already available at Oracle 9i. I don't remember, it has been 15 years ago!
ops it did not work
– aminezergui
Jan 14 '16 at 7:45
if :op.qt is not null then select BATCH_X_SEQ into seq_x from kbatchseq where batch_x_name=:op.batch_name_fin; select kbatch_seq.nextval into batch_number from dual; select '||seq_x||'.nextval into batch_seq from dual; select to_char(sysdate,'yy') into bat_date from dual; :op.batch_id := batch_number; bat_name := :op.batch_name_fin||' '||to_char(batch_seq)||'-'||bat_date;
– aminezergui
Jan 14 '16 at 7:45
j'ai trouvé on fait une fonction et on l'appelle par la suite par:" select nom_function(variable_function) into batch_seq from dual; merci
– aminezergui
Jan 17 '16 at 9:32
add a comment |
Your Answer
StackExchange.ready(function() {
var channelOptions = {
tags: "".split(" "),
id: "182"
};
initTagRenderer("".split(" "), "".split(" "), channelOptions);
StackExchange.using("externalEditor", function() {
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled) {
StackExchange.using("snippets", function() {
createEditor();
});
}
else {
createEditor();
}
});
function createEditor() {
StackExchange.prepareEditor({
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: false,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: null,
bindNavPrevention: true,
postfix: "",
imageUploader: {
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
},
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
});
}
});
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%2fdba.stackexchange.com%2fquestions%2f126107%2foracle-conversion-variable-value-to-sequence-name%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
1 Answer
1
active
oldest
votes
1 Answer
1
active
oldest
votes
active
oldest
votes
active
oldest
votes
I am not sure what you mean but I assume it is this one:
EXECUTE IMMEDIATE `select '||seq_x||'.nextval from dual` INTO into batch_seq;
I hope EXECUTE IMMEDIATE
was already available at Oracle 9i. I don't remember, it has been 15 years ago!
ops it did not work
– aminezergui
Jan 14 '16 at 7:45
if :op.qt is not null then select BATCH_X_SEQ into seq_x from kbatchseq where batch_x_name=:op.batch_name_fin; select kbatch_seq.nextval into batch_number from dual; select '||seq_x||'.nextval into batch_seq from dual; select to_char(sysdate,'yy') into bat_date from dual; :op.batch_id := batch_number; bat_name := :op.batch_name_fin||' '||to_char(batch_seq)||'-'||bat_date;
– aminezergui
Jan 14 '16 at 7:45
j'ai trouvé on fait une fonction et on l'appelle par la suite par:" select nom_function(variable_function) into batch_seq from dual; merci
– aminezergui
Jan 17 '16 at 9:32
add a comment |
I am not sure what you mean but I assume it is this one:
EXECUTE IMMEDIATE `select '||seq_x||'.nextval from dual` INTO into batch_seq;
I hope EXECUTE IMMEDIATE
was already available at Oracle 9i. I don't remember, it has been 15 years ago!
ops it did not work
– aminezergui
Jan 14 '16 at 7:45
if :op.qt is not null then select BATCH_X_SEQ into seq_x from kbatchseq where batch_x_name=:op.batch_name_fin; select kbatch_seq.nextval into batch_number from dual; select '||seq_x||'.nextval into batch_seq from dual; select to_char(sysdate,'yy') into bat_date from dual; :op.batch_id := batch_number; bat_name := :op.batch_name_fin||' '||to_char(batch_seq)||'-'||bat_date;
– aminezergui
Jan 14 '16 at 7:45
j'ai trouvé on fait une fonction et on l'appelle par la suite par:" select nom_function(variable_function) into batch_seq from dual; merci
– aminezergui
Jan 17 '16 at 9:32
add a comment |
I am not sure what you mean but I assume it is this one:
EXECUTE IMMEDIATE `select '||seq_x||'.nextval from dual` INTO into batch_seq;
I hope EXECUTE IMMEDIATE
was already available at Oracle 9i. I don't remember, it has been 15 years ago!
I am not sure what you mean but I assume it is this one:
EXECUTE IMMEDIATE `select '||seq_x||'.nextval from dual` INTO into batch_seq;
I hope EXECUTE IMMEDIATE
was already available at Oracle 9i. I don't remember, it has been 15 years ago!
edited Jan 13 '16 at 22:01
Tom V
13.9k74778
13.9k74778
answered Jan 13 '16 at 18:53
Wernfried DomscheitWernfried Domscheit
1,250612
1,250612
ops it did not work
– aminezergui
Jan 14 '16 at 7:45
if :op.qt is not null then select BATCH_X_SEQ into seq_x from kbatchseq where batch_x_name=:op.batch_name_fin; select kbatch_seq.nextval into batch_number from dual; select '||seq_x||'.nextval into batch_seq from dual; select to_char(sysdate,'yy') into bat_date from dual; :op.batch_id := batch_number; bat_name := :op.batch_name_fin||' '||to_char(batch_seq)||'-'||bat_date;
– aminezergui
Jan 14 '16 at 7:45
j'ai trouvé on fait une fonction et on l'appelle par la suite par:" select nom_function(variable_function) into batch_seq from dual; merci
– aminezergui
Jan 17 '16 at 9:32
add a comment |
ops it did not work
– aminezergui
Jan 14 '16 at 7:45
if :op.qt is not null then select BATCH_X_SEQ into seq_x from kbatchseq where batch_x_name=:op.batch_name_fin; select kbatch_seq.nextval into batch_number from dual; select '||seq_x||'.nextval into batch_seq from dual; select to_char(sysdate,'yy') into bat_date from dual; :op.batch_id := batch_number; bat_name := :op.batch_name_fin||' '||to_char(batch_seq)||'-'||bat_date;
– aminezergui
Jan 14 '16 at 7:45
j'ai trouvé on fait une fonction et on l'appelle par la suite par:" select nom_function(variable_function) into batch_seq from dual; merci
– aminezergui
Jan 17 '16 at 9:32
ops it did not work
– aminezergui
Jan 14 '16 at 7:45
ops it did not work
– aminezergui
Jan 14 '16 at 7:45
if :op.qt is not null then select BATCH_X_SEQ into seq_x from kbatchseq where batch_x_name=:op.batch_name_fin; select kbatch_seq.nextval into batch_number from dual; select '||seq_x||'.nextval into batch_seq from dual; select to_char(sysdate,'yy') into bat_date from dual; :op.batch_id := batch_number; bat_name := :op.batch_name_fin||' '||to_char(batch_seq)||'-'||bat_date;
– aminezergui
Jan 14 '16 at 7:45
if :op.qt is not null then select BATCH_X_SEQ into seq_x from kbatchseq where batch_x_name=:op.batch_name_fin; select kbatch_seq.nextval into batch_number from dual; select '||seq_x||'.nextval into batch_seq from dual; select to_char(sysdate,'yy') into bat_date from dual; :op.batch_id := batch_number; bat_name := :op.batch_name_fin||' '||to_char(batch_seq)||'-'||bat_date;
– aminezergui
Jan 14 '16 at 7:45
j'ai trouvé on fait une fonction et on l'appelle par la suite par:" select nom_function(variable_function) into batch_seq from dual; merci
– aminezergui
Jan 17 '16 at 9:32
j'ai trouvé on fait une fonction et on l'appelle par la suite par:" select nom_function(variable_function) into batch_seq from dual; merci
– aminezergui
Jan 17 '16 at 9:32
add a comment |
Thanks for contributing an answer to Database Administrators Stack Exchange!
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
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%2fdba.stackexchange.com%2fquestions%2f126107%2foracle-conversion-variable-value-to-sequence-name%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
You want to get the next value of a sequence from a sequence, with the sequence name given dynamically?
– Philᵀᴹ
Jan 13 '16 at 13:27
I want to call the sequence.nextval from the contents of a variable
– aminezergui
Jan 14 '16 at 7:41