How to create a sequence DDL in a procedure

Hello,
i have a simple question but i dont find a solution here.
How to create a sequence DDL in a procedure ?
Thank 's

Use Native Dynamic Sql. Look at the EXECUTE IMMEDIATE command.
declare
begin
   execute immediate 'create sequence xx_seq ';
end;
/Of course you need explicit permission to create a sequence. NOT through a ROLE.

Similar Messages

  • How to create a SEQUENCE in MSSQL2005

    Hi
    I am also having a similar problem which opened the thread
    Actually i am using a Repositery which is created in MSSQL2005.
    Now i want to create a SEQUENCE similar to Oracle and populate My surrogate Key Column.
    Can u tell me how to create a SEQUENCE in MSSQL2005?
    Does anyone is having the sql syntax?
    Thanks
    Gourisankar

    Hi Gourisankar,
    There is no sequence concept in MS SQL Server rather it has IDENTITY.
    In MS SQL Server if you declare a column type as a Identity it will be auto increment when a new record inserts.
    So in you underlying table create a column as ID and type as "Identity" and in your mapping leave that field un mapped.
    Have a look and google more on "identity in ms sql server" ;)
    http://www.sqlteam.com/article/autonumbering-identity-columns
    http://www.craigsmullins.com/ssu_0599.htm
    Thanks,
    G

  • How to Create Test Sequence Document in HTML using command line

    How to Create Test Sequence Document  in HTML using command line
    I have lot of sequences and I want to create Test Sequence Documentation in HTML format using Command Line automatically, is there a way to automate this task using .bat file or using   C#  .Net

    If you aren't able to figure out how to call a C++ DLL in .net then there may be another option.  Unfortunately I don't know how to do this off the top of my head and I don't have an example.
    The other option would be to change docgen.seq a little bit to the dialog doesn't display and you just hardcode the options.  Then you can use a command line to call testexec.exe: http://zone.ni.com/reference/en-XX/help/370052K-01/tsfundamentals/infotopics/startup_opt/
    Hope this helps,
    jigg
    CTA, CLA
    teststandhelp.com
    ~Will work for kudos and/or BBQ~

  • How to Create a Sequence Number from BI Publisher Layout editor?

    How to Create a Sequence Number (1,2,3,4,......,etc) from BI Publisher Layout editor

    Thank you for your replay, but <?position()?> we can used it in template builder only not from BI layout editor
    I found a solution in this case we can used the following query.
    SELECT
    ROW_NUMBER() OVER(order by item_status) as Row,

  • How to create a sequence for an particular item in my apex form

    Hi friends,
    I created an database application, of a form with a report, and it is working fine...
    But in my form, i have a requirement....The below are the existing fields in my form
    issue no
    created by
    start date
    status
    priority
    due date
    Among these fields in my form i need to create a 'Sequence' for my field "issue no",
    So that whenever i opened the form the 'issue number' must generate automatically like 1 for the first time, 2 for the second time and so on..
    For that i created a sequence
    CREATE SEQUENCE "ORDERS_SEQ"
    MINVALUE 1
    MAXVALUE 999999999999999999999999999
    INCREMENT BY 1
    START WITH 1000
    NOCACHE
    NOCYCLE;
    But for validation where i need to write the sequence query for the particular item 'issue no'....i dont have any idea of where to write the validation query for the sequence..
    please tell where i need to write in step wise manner..please help me friends...
    As the below is my validated sequence query for item 'issue no'
    'select seq.issue_id.nextval into issue_no'
    This is my above validation query whether the query that i mentioned is right..if not let me know the validation query..
    And also i need where to apply this validation query in steps..
    Thanks in advance
    Regards,
    Harry...

    Harry,
    Rik is on the right track. Here is a sample insert trigger: Would need to substitute you sequence ORDERS_SEQ with my sequence las_log_seq, how you define or use timestamps is up to you.
    DROP TRIGGER LASDEV.BINS1_LAS_LOG_TBL;
    CREATE OR REPLACE TRIGGER LASDEV."BINS1_LAS_LOG_TBL"
       BEFORE INSERT
       ON las_log_tbl
       FOR EACH ROW
    BEGIN
       -- Description: Insert log_seq, creation_dt, creation_id,
       --              lst_updt_dt and lst_updt_id.
       -- Maintenance:
       -- Date        Actor          Action
       -- ====        =====          ======
       -- 07-Sep-2010 J. Wells       Create.
       :new.creation_id := nvl( v( 'app_user' ), user );
       :new.creation_dt := SYSDATE;
       :new.lst_updt_dt := :new.creation_dt;
       :new.lst_updt_id := :new.creation_id;
        SELECT las_log_seq.NEXTVAL
          INTO :new.las_log_seq
          FROM DUAL;
    END bins1_las_log_tbl;
    /Heff

  • How to create a sequence based on name, country, city, year, month, number

    Hello,
    I am using Application Express 4.2.1.00.08
    I am new to apex and i need some help in creating a sequence.
    I am creating an application where i profile people and i need to create an auto sequence that when the person is added to the database he will have his own sequence based on his name, country, city, year he was added, month he was added and his number.
    This is a bit tricky because each person will have a different name, country city etc.
    How can this be done ?

    Hello,
    I have to create a sequence so that when for example an employee is added using a form his ID will be saved based on his name, country, city, year he was created, month he was created and his number.
    However, each employee is diff, so when you add another employee to the form his ID will be different, different name, country, city etc..
    This has to be automatically generated.. is this possible?

  • How to create a sequence in Answers?

    Hi everyone,
    I want to know if it's possible to create a sequence in Answers and how.
    I have a Pivot table that I want to assign row numbers, but when I use RCOUNT(1) in a Dummy column I end up with 1 in all rows.
    This is the format of my pivot table.
    -------------------------------------Measure---
    ---------------------------------Y-1-------Y----
    Order(DUMMY)---Code---Desc-- 2009 ----- 2010
    1 435 idn 1 2
    1 53 dvf 3 1
    1 123 asd 8 4
    I've tried to do RCOUNT(1 by Y) but then I end up having the double of rows.
    Can it be done???
    Thanks in Advanced

    Try doing this:
    1) Create a dummy column and call it DUMMY with this in the fx:
    CASE WHEN 1=0 THEN tablename.columname ELSE 'whatever' END
    2) You can hide this column.
    3) Then in your "sequence" column, click on the fx and type:
    RCOUNT(1 by DUMMY)
    where "DUMMY" is the column created in step 1.

  • How to create a sequence using Toplink for DUAL table

    Hi All,
    How do I create below sequence using TOPLINK
    CREATE sequence my_seq start WITH 1;
    Regards,
    Dheeraj

    Hi Dheeraj,
    Sequence Object should be created in Database and specify the type of sequence that will be used in toplink to create sequence value.For example,sequence objects created in database needs to be configured using Native Sequence.
    For more information refer to the below link.Use JDeveloper Toplink Wizards for declarative programming of Toplink native Sequencing.
    http://www.oracle.com/technology/products/ias/toplink/doc/1013/main/_html/reldscfg003.htm.
    Regards,
    P.Vinay Kumar

  • How to create a sequence number to insert values to database

    I am working on the application for the client to insert their vendor informaton to our database. We have a refvendor table and vendorid is primary key. I was asked for the vendorid to be a sequential number. I am not sure if the DBA set up the vendor id to be a sequential number by creating sequence or is this something i can do myself. if so can you help me how i can create and make the vendor id a sequentiial number. Thank you
    Tablename is Refvendor
    vendorId, vendorname, dbestaus

    user452051 wrote:
    thank you for the reply. I am still learning about sequence. so the value from seq.netval will be inserted to the vendor id field. my first number will be 00001,00002,00003,00004,.... How can I do for the sequence to start with 00001If you create a sequence as shown, it will start with 1
    ,..... and my other question if I delete sequence 00002 will the number be re-arranged?no
    There will be gaps in the numbers.

  • How to create a Sequence;

    Hi All,
    I have a master block and child block;
    I need to create sequence number in child block like 1 2 3 4
    Line #
    1....date1.....12......
    2....date2.....xxx....
    3....xxx........xxx....
    4..........
    When i create new customer and its detail it should start with new sequence
    and some one query the records and open it then this should continue the sequence.
    Thx.
    Message was edited by:
    J.Harsha

    Jan, I have created the multi records it is fine,
    This is about how to get the sequence numbers,
    Lets say some one open one record and it have 5 detail records.
    if he is in second detail record and try to insert a new record i want to show
    Line id 6
    I was trying with
    SELECT nvl(MAX(LINE_PERIOD)+1,0) INTO l_LINE_PERIOD FROM XX_RATE_LINE RL
    WHERE RL.CUSTOMER_ID=:MSF_V.CUSTOMER_ID;
    if l_line_period>4 then -- we gave default 4 records
    bk_id := Find_Block('MSF_LINE');
    --last_record;
    :line_period := Get_Block_Property( bk_id, MAX_RECORDS_FETCHED)+1;
    --CURRENT_RECORD);
    --MAX_RECORDS_FETCHED
    end if;
    CURRENT_RECORD is good if some one navigating properly always into the last record.
    Message was edited by:
    J.Harsha

  • How to create a sequence in oracle forms6i

    Oracle forms 6i
    Hai All
    I am working in leave application entry so i need to create a sequence for giving a unique number for each entry
    Pls tell me the steps how to created and how to call the sequence from database
    Thanks in Advance
    Srikkanth.m

    Hi,
    Create sequence <sequence_name>
    Start with <number>
    increment by <number>
    in database
    eg:- create sequence test_seq
    start with 1
    increment by 1;
    in forms
    you can assign value in pre-insert trigger
    Declare
    cursor cur_seq is
    select test_seq.nextval from dual;
    begin
    open cur_seq;
    fetch cur_seq into :item_key ; /* :item_key give name of ur primary key field*/
    close cur_seq;
    end;

  • How to create a sequence with followoing specs....

    Hello all,
    I have to create a sequence with following specs:
    data type: number
    no. of digits: 6
    classification:
    1st digit starts from 5
    next 2 digits represent current year e.g. 06
    and next 3 digits = running serial (001 to 999)
    increament: 1
    example: 506001
    please help me
    regards/gulzar

    it is pre assumption that the running serial will not go beyond 999 in a year
    the ceiling is 500 per year
    yes its a y2.1k issue but we are not supposed to store a uniqe identifier for more than 100 years in the database.
    i m a novice, can you please suggest a code template for such a seq.?

  • How to Create a Sequence that generates in IP form?

    Hi,
    I want to create a sequence that can generate an IP nos. like
    224.0.0.1
    224.0.0.2
    224.255.255.255
    Is this possible?
    Thanks a lot,

    >
    Hi KinsaKaUy,
    Then, just format it as an IP address (exercise left to you)
    Any hint please :)There is a way of converting from IP Address to IP Number - N.B. two different* things.
    Take a look at this [url https://forums.oracle.com/forums/thread.jspa?messageID=10424504]thread, and this [url https://forums.oracle.com/forums/thread.jspa?messageID=10420648]one, esp. my responses.
    You can convert IP addresses into decimals (and vice versa) and work with them that way - it often
    makes life easier - I think this should be what you want.
    HTH,
    Paul...
    Edited by: Paulie on 18-Jul-2012 17:27

  • How to create screen sequence and assign to material type

    Hi,
    How to create new screen sequecnce and how to assign it to material type, is there any link of Industry sector with this.
    regards,
      zafar

    how to assign it to material type and also what is use of industry sector
    Industry sector - it simply mean The industry sector groups companies according to activity, for example, plant engineering and construction, mechanical engineering, the chemical industry, and the pharmaceutical industry
    Field references are defined in Customizing for the Material Master in the activity Maintain Field Selection for Data Screens.
    for see field references run tcode OMs9.
    Assign Field references to Material Type by Tcode OmT3E, You can see in OMS2 in General data See Field references and SRef: material type

  • How to create AMDP's for sub stored procedures

    Hi,
    I am migrating Hana data base procedure to AMDP.
    I have HANA DP like below.
    procedure1.
       call procedure 2.
    endof procedure1.
    how to create AMDP in this case, i have created AMDP methods for both procedure1 and procedure2 but when i am calling AMDP of stored procedure2 in AMDP of stored procedure1  it's giving sqlscript syntax error since call method is an abap statement.
    can any one help me how to achieve this.
    Thanks
    Viswamurthy

    Dear Viswamurthy,
    You cannot use  CALL METHOD statements inside an AMDP Method as AMDP methods would not understand ABAP syntax.
    You need to use SQLScript CALL statements to call an AMDP method from an other AMDP method like below
    METHOD increase_price BY DATABASE PROCEDURE
                          FOR HDB LANGUAGE SQLSCRIPT
                          USING cl_demo_amdp_call_amdp=>increase_price_amdp.
      call "CL_DEMO_AMDP_CALL_AMDP=>INCREASE_PRICE_AMDP"(
        CLNT => :CLNT, INCPRICE => :INCPRICE );
    ENDMETHOD.
    You can find an example in the below link
    ABAP Keyword Documentation
    Hope this helps.
    Thanks
    Sundar

Maybe you are looking for

  • Stuck on Grey Screen During Startup

    I updated to Yosemite on Saturday and everything has been working fine, I have been able to shut down and startup as normal until today. Last night I forced my Early 2011 MacBook Pro to shut down and today it will no longer get to the login screen. I

  • My version CS won't stay open and...

    I've had CS2 for several years and it has worked with no problem until last week. Suddenly Indesign won't open, Photoshop won't open either but Space Monkey tries to open in it's place (what is Space Monkey anyhow and how did I get that!?) and it the

  • BI Lauch Pad link not working

    Hi I Installed BI 4.1 Trial Version. I am able to open the BI Launch Pad Link on the Windows Server BUT not in client laptop 1. I checked the Tomcat is working fine checking the tomcat link http://systemname:port no 2. same link able to access in win

  • MacBook Pro Retina Heat Issues Screen Discolored

    I've been having major heat issues while using the Mac, mostly it has been heating up while playing games.  I have been using an external monitor and had the lid closed and when I opened the lid i saw the screen was discolored by the heat that was co

  • JTabbedPane Error

    I have the following error generated java.lang.NullPointerException      at ButtonPanel.<init>(Toolbars.java:30)      at IRCWindow.<init>(IRCWindow.java:29)      at IRCApplet.panelFinished(IRCApplet.java:161)      at InitScreen.actionPerformed(IRCApp