oracle conversion variable value to sequence name The 2019 Stack Overflow Developer Survey...

Will it cause any balance problems to have PCs level up and gain the benefits of a long rest mid-fight?

Dropping list elements from nested list after evaluation

Are spiders unable to hurt humans, especially very small spiders?

"as much details as you can remember"

Does HR tell a hiring manager about salary negotiations?

How did passengers keep warm on sail ships?

Accepted by European university, rejected by all American ones I applied to? Possible reasons?

Kerning for subscripts of sigma?

Why are there uneven bright areas in this photo of black hole?

How to obtain a position of last non-zero element

What do hard-Brexiteers want with respect to the Irish border?

Why don't hard Brexiteers insist on a hard border to prevent illegal immigration after Brexit?

Keeping a retro style to sci-fi spaceships?

Why does the nucleus not repel itself?

Is it safe to harvest rainwater that fell on solar panels?

What is the meaning of Triage in Cybersec world?

Why is the maximum length of OpenWrt’s root password 8 characters?

Can there be female White Walkers?

If I score a critical hit on an 18 or higher, what are my chances of getting a critical hit if I roll 3d20?

Why was M87 targeted for the Event Horizon Telescope instead of Sagittarius A*?

What is this sharp, curved notch on my knife for?

What to do when moving next to a bird sanctuary with a loosely-domesticated cat?

Geography at the pixel level

Did the UK government pay "millions and millions of dollars" to try to snag Julian Assange?



oracle conversion variable value to sequence name



The 2019 Stack Overflow Developer Survey Results Are InHow could sequence.nextval be null in Oracle?simulate sequence on mysql in preparation for move to oracleCouldn't find the long running SQL under v$session_longopsI'm trying to use a variable in Oracle PL/SQL, but I'm getting an error. What's wrong here?Call trigger during SQL Loader insertHow can I do the following task in OracleExecute immediate call causes 'variable not in select list' errorNumber Sequence With GapsCustom Sequence using Trigger & Sequence in Oracle SQLnormal hexadecimal to 0x hexadecimal conversion in oracle





.everyoneloves__top-leaderboard:empty,.everyoneloves__mid-leaderboard:empty,.everyoneloves__bot-mid-leaderboard:empty{ margin-bottom:0;
}







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;









share|improve this question
















bumped to the homepage by Community 4 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


















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;









share|improve this question
















bumped to the homepage by Community 4 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














0












0








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;









share|improve this question
















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






share|improve this question















share|improve this question













share|improve this question




share|improve this question








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 4 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 4 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



















  • 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










1 Answer
1






active

oldest

votes


















0














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!






share|improve this answer


























  • 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












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
});


}
});














draft saved

draft discarded


















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









0














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!






share|improve this answer


























  • 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
















0














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!






share|improve this answer


























  • 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














0












0








0







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!






share|improve this answer















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!







share|improve this answer














share|improve this answer



share|improve this answer








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



















  • 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


















draft saved

draft discarded




















































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.




draft saved


draft discarded














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





















































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







Popular posts from this blog

ORA-01691 (unable to extend lob segment) even though my tablespace has AUTOEXTEND onORA-01692: unable to...

Always On Availability groups resolving state after failover - Remote harden of transaction...

Circunscripción electoral de Guipúzcoa Referencias Menú de navegaciónLas claves del sistema electoral en...