Consistency of sequence.curval

Hi Folks,
I have a Table llike this (simplified example):
CREATE SEQUENCE tab1_seq
  START WITH 1
  INCREMENT BY 1
  MAXVALUE 99999999999999
  NOCYCLE
  CACHE 20
CREATE TABLE tab1 (
  id NUMBER(14) PRIMARY KEY,
  name VARCHAR2(16) NOT NULL,
  val1 NUMBER,
  val2 NUMBER,
  val3 NUMBER
CREATE OR REPLACE
PROCEDURE helpProc RETURN INTEGER AS
      currentval NUMBER;
BEGIN
        SELECT tab1_seq.CURRVAL INTO currentval FROM dual;
        RETURN currentval;
END;From a C-Program via Oracleinstantcllient-Library I perform the following transaction ...
(Using, OCIStmtPrepare, OCIBind*, OCIStmtExecute, .. same for other inserts/updates ..., at least OCITransCommit)
INSERT INTO tab1 (id,name) VALUES (tab1_seq.NEXTVAL, 'newdata45');
UPDATE tab1 SET val1=753.874 WHERE id=helpProc();
UPDATE tab1 SET val2=3.45678 WHERE id=helpProc();
UPDATE tab1 SET val3=0.987 WHERE id=helpProc();
-- actually there are N update staements
COMMIT;I know - that helpProc() isn't needed (also I can do it as subselect from dual) - but thats the way it implemented here (not from me, thats why I'm working on it). The mainquestion is if this is a safe way?! I can imagine that Oracle uses a kind of rowlocking and if there is another row inserted during this transaction executes the helpProc() or .currval returns not the id as it expected here. Or maybe related to the sequence cache?!
Background: Actually there are more than 3 values, let's say 50. And only N valus are known and have to been inserted. So I can find a safe efficient solution to do that in a way like it described above or I parse/compute a single insert statement inside of the c-programm.
Thanks for help!
Regards!

And you are sure about it's ONE session for the ocifunctions order I mentioned?
OCIHandleAlloc
OCIStmtPrepare (Prepareing the INSERT Query)
OCIBindByPos (Binding values)
OCIStmtExecute (Execute this query)
--> how does oracle know that teh session isn't ended at this point?
N-times:
OCIHandleAlloc
OCIStmtPrepare (Prepareing the UPDATE Query)
OCIBindByPos (Binding values)
OCIStmtExecute (Execute this query)
At the end:
OCITransCommit
I'm not sure if that builds an transaction which data become valid after commit only. ?!
Regards.

Similar Messages

  • How to select between sequences on different DB links when one DB is down

    Hi!
    I'm running Oracle 11.1.0.7.0 on HPUX v3 in a Stream replicated environment.
    One of the applications would need to connect to both DBs ensuring some consistency across sequences defined locally.
    We cannot use odd/even approach in the sequences so that I thought we may take the greatest value of the two sequences (one on each node).
    The SQL would look like:
    select greatest(user.SEQ_NUMBER.nextval@DB_B,user.SEQ_NUMBER.nextval@DB_A) from dual;
    it works fine but only in a sunny day scenario, i.e. when both nodes are up and running. In case of issues with one of the DBs I would get:
    ERROR at line 1:
    ORA-12541: TNS:no listener
    Is there any way to intercept this error and take the value from the local DB ?
    Thanks,
    Mike

    Hi Mike,
    Maybe something like this would help you:
      1  create or replace function f1 return number as
      2  lv_stmt varchar2(128);
      3  lv_ret  number;
      4  begin
      5   lv_stmt := 'select 1 from dual@dummy_dblnk';
      6   execute immediate lv_stmt into lv_ret;
      7  exception
      8   when others then
      9    if sqlcode = -2019 then
    10      return -1;
    11    else
    12     raise;
    13    end if;
    14* end;
    SQL> /
    Function created.
    SQL> save f1 replace
    Wrote file f1.sql
    SQL> SELECT f1 FROM dual;
            F1
            -1Thanks,
    Lukasz

  • Auto Sequence Generator

    I create a table with a key and anytime I create a new row I
    would like the the key to be updated by one. I want a sequence
    generator to kick off without me doing a nextval. Does anyone
    have a specific example.

    As an example, we consistently uses sequences and triggers of
    the following type. And then we never bother about creating the
    primary key in inserts.
    CREATE SEQUENCE Q_BILL_OF_MATERIALS
    INCREMENT BY 1
    NOMAXVALUE
    NOMINVALUE
    NOCYCLE
    NOCACHE
    CREATE OR REPLACE TRIGGER BOM_INSERT_ID
    BEFORE INSERT
    ON BILL_OF_MATERIALS
    FOR EACH ROW
    WHEN (new.id IS NULL)
    BEGIN
    SELECT     q_bill_of_materials.nextval
    INTO     :new.id
    FROM     dual;
    END;

  • Media reconnection problem URGENT!

    I am in a very urgent situation.
    Working on a feature length project and today after opening 2 sequences I was working on yesterday I had to relink media, because my scratch disks were not connected.
    While relinking, final cut pop up says that some clips' media start & end has changed , continue with relinking or cancel. I had to continue work so I went on. Alas, now i am in front of a nightmare!
    Both sequencies have been altered. In some areas the edits look the same but the content is different, in other areas cuts have been totaly removed.
    please help.

    Thank you for trying to help. These file were imported by log and capture and were atomaticaly converted to prores 422 LT. I did not mess around with file names, as the names were given during the log and transfer proccess.
    This is definetely a final cut bug.
    The problem dissapeared (not solved though, as the reasons remain unknown) with the folowing way:
    a) I open one of the backed up files and looked at my rough cut wich consists of sequencies.
    b) By playing the 2 specific sequencies on the rough cut, there was no error in the edit.
    c) By opening these 2 sequencies on the project browser, there was a different edit !!!!
    d) By going back to the rough cut and double clicking on the nested sequence, I could see the original edit.
    e) Now I had  one specific sequence in the timeline, the same name, the identical sequence, opened in two different tabs. In one tab (the sequence that i entered to through the rough cut) the edit was the original, in the other tab (the one that i opened through the project browser) the edit was distorted !!!
    f) I copied the clips of the original edit to a newly created sequence.
    g) I deleted the old- problematic sequence
    h) i repeated the process with the second sequence that was altered by final cut on its own will.
    I hope this will help someone in a similar situation and I keep this question as unsolved, because in reality noone really knows - until now- the reason for this situation. Thank god it was solved.

  • "Wish-list" to JavaFX

    <!--
    @page { margin: 2cm }
    P { margin-bottom: 0.21cm }
    H1 { margin-bottom: 0.21cm }
    H1.western { font-family: "Times New Roman", serif }
    H1.cjk { font-family: "Lucida Sans Unicode" }
    H1.ctl { font-family: "Tahoma" }
    -->Review/&rdquo;wish-list&rdquo; for JavaFX/NetBeans
    The following &ldquo;wish-list&rdquo; for JavaFX (1.1) and NetBeans (1.5), was made based on my experience doing three - smaller - projects in JavaFX. I plan to submit these projects (&ldquo;DestroyerFX&rdquo;, &ldquo;AceOfSpadeFX&rdquo; and &ldquo;SteamPunkWatch&rdquo;) to the &ldquo;JavaFX Coding Challenge&rdquo; (see &ldquo;http://www.javafx.com/challenge/&rdquo;):
    - a &rdquo;recreate&rdquo;-method for &ldquo;CustomNodes&rdquo; in style of the &rdquo;repaint&rdquo;-method of &rdquo;java.awt.Component&rdquo;. Should force the (re)call of &ldquo;create&rdquo;-
    method of a &ldquo;CustomNode&rdquo;-objects (normally &ldquo;create&rdquo; is only called once &ndash; the first time the &ldquo;CustomNode&rdquo; is drawn).
    Useful for &ldquo;CustomNodes&rdquo; changing their graphical expression over time, other than what may be expressed by using transformations.
    Solutions to the problem (using the existing system) could be:
    - reconstruct &ldquo;CustomNode&rdquo;'s for each iteration, or when they need to change their graphics. This would force a (re)call to the &ldquo;create&rdquo;-
    method
    - using a &ldquo;Group&rdquo; (or &ldquo;Sequence&rdquo;) to group different graphical representations/&rdquo;Nodes&rdquo;. The &ldquo;visible&rdquo;-attributes are manipulated to change
    between different representations
    - better support in NetBeans for export of projects as executable JAR-files. Useful for people wanting to distribute their application more in
    the style of traditional applications
    - default-values &ldquo;http://localhost:8082/servlet/...&rdquo; in generated *.jnlp files (by NetBeans) should be changed to relative-path &ldquo;file:.&rdquo;. This would
    make distribution of projects easier.
    I don't know if this already is possible in present system, by for instance setting up NetBeans
    - merge of Java and JavaFX (-script language). Basically features of JavaFX should be included in Java.
    For object-construction-syntax, I suggest some thing like:
    (new) MyClass(parm1,parm2, ...) {
    attr1: ...,
    attr2: ...,
    i.e. first the normal Java-constructor is called, hereafter attributes are assigned in JavaFX-style.
    JavaFX &ldquo;bindings&rdquo; could be a good alternative to &ldquo;Beans Bindings&rdquo; (JSR 295).
    I think both technologies (object-construction and bindings), would be a great addition to the Java-language, and could prove useful in other
    areas than just GUI's.
    The JavaFX API should further be accessible from Java
    - having a project of mixed Java- and JavaFX-files, I wasn't able to &ldquo;see&rdquo; JavaFX-files from Java-files in NetBeans. It would be nice to be able
    to do this, since I still consider Java as a better general-purpose language (for larger projects); and people might have older Java-code they
    may want to incorporate in their JavaFX-projects. I think, I recall some forums talk about this topic, but the solution isn't obvious anyway
    - problems playing sound-clips with the JavaFX &ldquo;MediaPlayer&rdquo; (multiple clips are played at the same time in my application). According to
    forums, this could be due to the sound-files being placed in JAR-files.
    In my projects I &ldquo;cheated&rdquo; by using the JavaSE-primtives for this (&ldquo;javax.sound.sampled&rdquo;). It would be nice if this could be fixed
    - in one of my applications (&ldquo;DestroyerFX&rdquo;), I wanted to use dynamic binding of the &ldquo;Scene&rdquo; of the central &ldquo;Stage&rdquo;-object, allowing the
    application to switch between a number of difference &ldquo;Scene&rdquo;'s according to functionality and context (&ldquo;introduction&rdquo;, &ldquo;level-up&rdquo;, actual game
    and &ldquo;final score&rdquo;). When running the application as a web-browser applet, this approach didn't seem to work (the application was stuck on
    first shown &ldquo;Scene&rdquo;). I recall some forums-posts discussing this.
    My solution to the problem was to reformulate the difference &ldquo;Scene&rdquo;-objects to &ldquo;Group&rdquo;-objects, swifting between the different
    &ldquo;Scene&rdquo;/&rdquo;Group&rdquo;'s by manipulating their &ldquo;visible&rdquo;-attribute.
    A performance problem was discovered in a &ldquo;Group&rdquo; having a &ldquo;content&rdquo; consistent of &ldquo;Sequences&rdquo; with dynamic changing content. I solved
    this by extracting the &ldquo;Sequences&rdquo; from the group, making them &ldquo;first-generation&rdquo; children of the &ldquo;Stage&rdquo;, i.e. going from:
    var grp1 : Group = Group {
    content: [ seq1, seq2, ...],
    var grp2 : Group = Group { ... };
    var actualGroup : Group = ...;
    Stage {
    scene: Scene {
    content: bind [ actualGroup],
    ... to:
    var grp1 : Group = Group {
    content: [ ...],
    var grp2 : Group = Group { ... };
    var actualGroup : Group = ...;
    Stage {
    scene: Scene {
    content: bind [ seq1, seq2, actualGroup],
    With the critics giving, I owe people to say that my overall impression of the JavaFX-system (and NetBeans) has been very positive and
    satisfying. I hope for future development and deployment on diverse platform of the system.
    Fell free to comment, give solutions to problems and make new &ldquo;wishes&rdquo;.
    Regards

    Darn Rich Text-editor:
    Review/”wish-list” for JavaFX/NetBeans
    The following “wish-list” for JavaFX (1.1) and NetBeans (1.5) was made
    based on my experience doing three - smaller - projects in JavaFX. I plan
    to submit these projects (“DestroyerFX”, “AceOfSpadeFX” and
    “SteamPunkWatch”) to the “JavaFX Coding Challenge”
    (see “http://www.javafx.com/challenge/”):
    - a ”recreate”-method for “CustomNodes” in style of the ”repaint”-method
    of ”java.awt.Component”. Should force the (re)call of “create”-method
    of a “CustomNode”-object (normally “create” is only called once – at
    the first time the “CustomNode” is drawn)
    Useful for “CustomNodes” changing their graphical expression over time,
    other than what may be expressed by using transformations.
    Solutions to the problem (using the existing system) could be:
    -- reconstruct “CustomNode”'s for each iteration, or when they need
    to change their graphics. This would force a (re)call to the “create”-method
    -- using a “Group” (or “Sequence”) to group different graphical representations/
    ”Nodes”. The “visible”-attributes are manipulated to change between
    different representations
    - better support in NetBeans for exporting of projects as executable
    JAR-files. Useful for people wanting to distribute their application
    more in the style of traditional applications
    - default-values “http://localhost:8082/servlet/...” in generated *.jnlp-
    files (by NetBeans) should be changed to relative-path “file:.”. This
    would make distribution of projects easier.
    I don't know if this already is possible in present system, by for
    instance setting up NetBeans
    - merge of Java and JavaFX (-script language). Basically features of
    JavaFX should be included in Java.
    For object-construction-syntax, I suggest some thing like:
    (new) MyClass(parm1,parm2, ...) {
                attr1: ...,
                attr2: ...,
            }i.e. first the normal Java-constructor is called, hereafter attributes
    are assigned in JavaFX-style.
    JavaFX “bindings” could be useful as an alternative to “Beans Bindings”
    (JSR 295).
    I think both technologies (object-construction and bindings) would be a
    great addition to the Java-language, and could prove useful in other
    areas than just GUI's.
    The JavaFX API should further be accessible from Java
    - having a project of mixed Java- and JavaFX-files, I wasn't able to
    “see” JavaFX-files from Java-files in NetBeans. It would be nice to be
    able to do this, since I still consider Java as a better general-purpose
    language (for larger projects); and people might have older Java-code
    they may want to incorporate in their JavaFX-projects. I think I
    recall some forums talk about this topic, but the solution isn't
    obvious anyway
    - problems playing sound-clips with the JavaFX “MediaPlayer” (multiple
    clips are played at the same time). According to forums, this could be
    due to the sound-files being placed in JAR-files.
    In my projects I “cheated” by using the JavaSE-primitives for this
    (“javax.sound.sampled”). It would be nice if this could be fixed
    - in one of my applications (“DestroyerFX”), I wanted to use dynamic
    binding of the “Scene” of the central “Stage”-object, allowing the
    application to switch between a number of difference “Scene”'s
    according to functionality and context (“introduction”, “level-up”,
    actual game and “final score”). When running the application as a
    web-browser applet, this approach didn't seem to work (the application
    was stuck on first shown “Scene”). I recall some forums-posts discussing
    this.
    My solution to the problem was to reformulate the different “Scene”-objects
    to “Group”-objects, swifting between the different “Scene”/”Group”'s by
    manipulating their “visible”-attribute.
    A performance problem was discovered in a “Group” having a “content”
    consistent of “Sequences” with dynamic changing content. I solved this
    by extracting the “Sequences” from the group, making them
    “first-generation” children of the “Stage”, i.e. going from:
    var grp1 : Group = Group {
                content: [ seq1, seq2, ...],
            var grp2 : Group = Group { ... };
            var actualGroup : Group = ...;
            Stage {
                scene: Scene {
                    content: bind [ actualGroup],
            }... to:
    var grp1 : Group = Group {
                content: [ ...],
            var grp2 : Group = Group { ... };
            var actualGroup : Group = ...;
            Stage {
                scene: Scene {
                    content: bind [ seq1, seq2, actualGroup],
            }With the critics giving, I owe people to say that my overall impression of
    the JavaFX-system (and NetBeans) has been very positive and satisfying. I
    hope for future development and deployment on diverse platform of the system.
    Fell free to comment, give solutions to problems and make new “wishes”.
    Regards

  • Media Export problem, urgent

    Hi all;
    I tried to save incoming RTP Stream to a local disk using RTPExport, VideoRecoder, and JMStudio. it was fine using JMStudio, but however it gives some problem for other two. for example:
    only audio track is saved/recorded audio, i tried to solve the problem by sending only video but then the video is saved with very poor quality, in other words, when i play the saved file, it plays with very high speed !
    plz don't hesitate to give a hand
    thanks in advance

    Thank you for trying to help. These file were imported by log and capture and were atomaticaly converted to prores 422 LT. I did not mess around with file names, as the names were given during the log and transfer proccess.
    This is definetely a final cut bug.
    The problem dissapeared (not solved though, as the reasons remain unknown) with the folowing way:
    a) I open one of the backed up files and looked at my rough cut wich consists of sequencies.
    b) By playing the 2 specific sequencies on the rough cut, there was no error in the edit.
    c) By opening these 2 sequencies on the project browser, there was a different edit !!!!
    d) By going back to the rough cut and double clicking on the nested sequence, I could see the original edit.
    e) Now I had  one specific sequence in the timeline, the same name, the identical sequence, opened in two different tabs. In one tab (the sequence that i entered to through the rough cut) the edit was the original, in the other tab (the one that i opened through the project browser) the edit was distorted !!!
    f) I copied the clips of the original edit to a newly created sequence.
    g) I deleted the old- problematic sequence
    h) i repeated the process with the second sequence that was altered by final cut on its own will.
    I hope this will help someone in a similar situation and I keep this question as unsolved, because in reality noone really knows - until now- the reason for this situation. Thank god it was solved.

  • Unique constraint violation

    Hi,
    I am a newbie to oracle..
    I have a composite primary key consisting of sequence,reg_no,srvc_code and srvc_type..
    when i tried inserting a record through the application it is showing that Unique constraint violated..But i did not find the record in the table for the same values
    and if I insert the same values with an sql insert statement,the record is inserted successfully..Please suggest me the possibilities of getting such an error.

    952759 wrote:
    Hi,
    I am a newbie to oracle..
    I have a composite primary key consisting of sequence,reg_no,srvc_code and srvc_type..
    when i tried inserting a record through the application it is showing that Unique constraint violated..But i did not find the record in the table for the same values
    and if I insert the same values with an sql insert statement,the record is inserted successfully..Please suggest me the possibilities of getting such an error.Either Oracle is mistaken or you are mistaken.
    I'll give you 1000 to 1 odds that Oracle is correct & you are mistaken.
    How can we reproduce what you report?
    How do I ask a question on the forums?
    SQL and PL/SQL FAQ

  • Routing & Reference Operation Set

    Hi All,
           Could you guys please help me to understand the following will be grateful
    What is the difference between Routing & Reference Operation Set?
    When the Routing will be used?
    When Reference Operation Set will be used?
    What are all the advantages and disadvantages behind using Routing & Reference Operation Set in prodution?
    At which Scenario Reference Operation Set is must?
    Thanks in Advance

    Hi,
    Routing defines the sequence of operations that should be carried at a work center to make up a product.
    In the operation you define the values for setting the machine and the machine time to prodduce a finished product for a particular base qty.
    Routing is one of task list in PP module to carry out the production of finished and semi finished parts. it consists operation sequence which requires for manufacture finsihed and semi finished parts like operation 10. 20, 30...
    Ref operation sets is use as template to create routing , rework order.
    These are four types...
    1) Routing and Ref operation sets (used is discreate manufacturing).
    2) Rate routing and Ref rate routings (used in repetative manufacturing).
    3) Recipe (used in process manufacturing)
    Ref operation sets are repeated operations can be use for several products. you have use these always in rotuings.
    For documents and PDF files you can download from the below link
    http://mysapbi.blogspot.com/2007/01/sap-help-in-pdf-files.html
    CA01 = Standard Routings
    CA11 = Reference Operation Sets
    CA21 = Rate Routings (used in Repetitive manufacturing only)
    CA31 = Reference Rate Routing (used in Repetitive manufacturing)
    Regards,
    R.Brahmankar

  • Routing and rate routing

    Hi Gurus,
    Please explain me the difference between Routing and rate routing in details
    Thanks in advance
    Rupesh

    Hi,
    Functionality of Routing and rate routing is similar.
    Routing: It defines the sequence of operations that should be carried at a work center to make up a product.
    Routing is one of task list in PP module to carry out the production of finished and semi finished parts. it consists operation sequence which requires for manufacture finsihed and semi finished parts like operation 10. 20, 30...
    It is mostly used in Discrete Manufacturing
    Rate Routing: A routing for whose operations the production quantity and a fixed duration has been defined. Thus the production rate is also defined.
    Rate routings are used when you plan on a quantity basis, for example in repetitive manufacturing.
    With regards
    Ram Kumar

  • Segment Type

    Hi all,
    A data extract consists of sequence of data segments. Data segments are characterized by segment type and segment Data.
    The following segment types are available:
    01     file Header
    02     Segment directory
    03     Meta data
    04     Selection criteria
    05     Data Records (transaction and master data)
    06     Checksum records
    07     Customizing Data.
    But I am not getting what is Segment-Type here?
    what do you mean by Checksum records ?
    Help me out
    Thanks in advance
    krish...

    hi,
    A data segment contains a collection of fields from SAP tables. A data segment may hold master data or data from an application document. A segment is a collection of all the records of one type. A segment may contain data from a single SAP database table, or it may combine related data from multiple tables.
    A checksum is basically a one-way hash of whatever data arguments you supply.
    also check this link and you will get answers to all your questions.
    http://help.sap.com/saphelp_erp2005vp/helpdata/en/34/b20cfde9bd11d1802c00c04fada2a1/frameset.htm
    Regards,
    Sourabh

  • Batch determination for stock transport order in po for delivery.

    Dear All,
    When I am creating a delivery in VL10D against a srock transport PO, while determining batches, i am getting an information  message "batch determination is not possible because there is no search procedure".
    How to configure so that , the batch should determine for making a delivery.
    Quick responce will be highly appreciated.
    Thanks & Regards
    Prasant Sekhar

    Hi,
    I had the similar problem with one of the client and I could solve it.
    The procedure is as follows:
    1)goto spro->logistic general ->batch management->batch determination
    2)Define condition table with proper selection of field .
    3)Define access sequence which will consists of sequence of condition tables.
    4)Define batch strategy and assign access sequence to it defined in step3.
    5)Define batch search procedure and assign it to movement type 641 or 643.
    6)Maintain batch search strategy condition record in tcode VCH1 with the combination u defined in access sequence.
    7) Apply a USER-EXIT (MV50AFZ1) in the program - SAPMV50A as follows:
    IF LIKP-VKORG = '0326' AND LIKP-LFART = 'ZNL' AND LIKP-KALSM_CH = ' '.
    Select single KALSM into ikalsm
                   from T683C
                   where VKORG = likp-VKORG
                   and VTWEG = '04'
                   and SPART = '00'
                   and AUART = ''.
                   Likp-KALSM_CH = IKALSM.
    ENDIF.
    8) Once you create the delivery (VL10D) against PO, go to VL02N -> Batch Split -> Batch determination
    You will find the batch will be splited into the delivery automatically.
    Reward the point if feel relevant.
    Regards,
    Praveen Ghosh

  • Slideshow consisting of programmed image sequences using a BluRay player?

    I posted this is iPhoto, and the only response suggested I try Keynote. So here goes.
    My partner has just moved from slides to digital (using my camera). She has often been asked to show her slides, and now that she has digital photos, it's up to me to make sure she can present them using a HD digital projector driven from a Bluray player. No problem there, except I'd like to take advantage of digital techniques to brighten up the shows, but don't want to go as far as preprogramming them totally. The shows will remain under manual control (press button – next image; press button - next image) while she talks about the images, or simply presents them and let the images themselves do the talking. I hope to add a bit extra, and infuse some of the images with digital magic.
    I want to set up a series of images that will be shown in sequence, with a 2-5 second dissolve between images. Those images (all 1920 x 1080) may be pure stills, or there may be some movement (pans, zooms) already programmed, or they may be HD Quicktime movies. However, these "images" will dissolve to the next image only when a button is pressed -- and this could be at any time-point while the image is being displayed. If a particular image reaches its endpoint (finished a pan, for example), the image just sits there waiting for the button to be pressed. For example, a show might go like this:
    Image 1 - Still. (Press button for dissolve to next image)
    Image 2 - Still with preset zoom-in. (Press button for dissolve to next image, even if zoom not finished)
    Image 3 - Still with pan. (Press button for dissolve to next image, even if pan not finished)
    Image 4 - Short Quicktime movie. (Press button…)
    Image 5 - Still. (Press button…)
    Basically, the show will be a sequence of images -- still or in motion -- but the next in sequence comes up only when a button is pressed.
    A further complication: I don't trust computers to do a live show. I would rather use a dedicated player, like a Bluray player, to feed the info direct to the projector. Whatever software I use, it has to be able to export the show either as one large file, or a series of files, that I can put onto a disk and be playable by a BluRay player. The file type required will depend on the make and model of the BluRay player used, but I hoping it will be Quicktime H.264 format.
    Two questions:
    Q1: Is Keynote the software for me, or should I be looking for something else?
    Q2: Will I be able to use a BluRay player, or will a laptop be necessary?

    Thanks for the reply, Kelly. Am I correct in saying that the methods suggested in your reply require a computer, running either QT or Keynote, to drive the digital projector? Whereas I'd really prefer to use a standalone BluRay player.
    Thinking about this a bit more, what I want is to play back a series of DVD-style "chapters" (stills, stills with pans, and video) but in 1920 x 1080 format, and whenever I press "forward" the output jumps to the next chapter and cross-dissolves while doing so. I might have to look into BluRay to see if cross-dissolve (at any time-point) from one chapter to the next is a part of the BluRay specification, or can be authored-in somehow.
    Finally, what capabilities does Keynote have that a video-editing program like Final Cut would not have? This slide-show thing is really a precursor to generating HD audio-visuals, and I assume that if Final Cut can be used to generate, from raw footage, a Hollywood-type movie from woe to go, that it would encompass all that Keynote could do. So, if I had Final Cut, would Keynote be of any use to me?

  • Sequence behavior after importing via DataPump

    Hi Friends,
    I'm running Oracle DB 11.2.0.3 on Windows 2008 R2 SP1 Servers and I faced a strange sequences behavior after importing a schema via Data Pump.
    The export is done this way:
    EXPDP userid/password dumpfile= logfile= directory= remap_dumpfile=y (no news)
    The import is done this way
    IMPDP userid/password dumpfile= logfile= directory= remap_schema=(old_one:new_one) remap_tablespace=(old_ones:new_ones, so on...)
    The import works fine. There are no errors and the sequences are as well imported with no warnings.
    The strange behavior is that the sequences seems to "reset". When we call a sequence the NEXTVAL is just lower than the values already stored in the Database, and we get ORA-00001 a lot. The sequence should know that vale. I don't have this problem when using exp/imp, just via DataPump.
    So that when we create an order that should receive the value of 100, as an example, because we have 99 orders on the system, Oracle suggest a value lower than 99 or even the number one value (01).
    We then wrote a script to check the CURVAL of the sequences on the base schema to recreate the sequences using this initial value on the new imported schema.
    Does anyone faced this problem before?
    Any suggestions?
    Tks a lot

    Richard
    I've tried what you just said.
    Adding the parameter consistent=y makes Oracle to show a message like that at the beginning of the export
    "flashback_time=TO_TIMESTAMP('2013-09-03 12:18:12', 'YYYY-MM-DD HH24:MI:SS')"
    It warns me: Legacy Parameter CONSISTENT=TRUE, and replaces with flashback_time.
    Really, I did not know about this behavior with this "old" parameter. I'm very appreciated about your help.
    I was almost thinking it was a DataPump bug or something.
    Thanks a lot Richard. I'll now update my scripts and make lots of test.
    If you have more advices using this parameter please share us.
    Cheers

  • I am copying audiobooks on CD to the iTunes, so that I can send them to my iPod, however I do not know how to keep all the disks that comprise a book ( sometimes up to 18 disks ) organized so that they are recognized as part of abook and played in sequenc

    I guess I asked the question in the title, anyway one more time:I am copying audiobooks on multiple CDs to Itunes so that I can sync them to an Ipod and listen to them, how do I keep the multiple disks inone folder under one book title and how do I keep the tracks from intermingling with the tracks from another disk?  EXAMPLE: I just downloaded one book, consisting of three CDs and I see the Track o1 information from each CD in sequence followed by three Track 02, instead of all tarcks from the first CD followed by the tracks of the next CD etc.

    Thank you, I read that lengthy procedure before I asked the question.
    I have no way of following all of those steps successfully since I am about butterfingered a sthe last dinosaur and will make every  mistake in the world and get frustrated with  something that SHOULD be simple.
    I have the three disk autobook showing in iTunes library as one title , I had to  enter the dat amyself since it was not listed on the internet data base, All entries for all tracks match and I have indicated  the disk number  as  one, two or three of three as indicated.
    Yet when I sync the iTunes to the iPod I am being presented with each individual track listed in the Audiobook Menu.
    I am using the latest version of iTunes and a iPod Classic 160G-- that I purchased three days ago purposefully for the converting of the audiobooks to a portable device since the Library of Congress  ( NLS BARD ) books are formatted differently and the player is bulky.
    Does anybody hav eany other ideas?
    Does anybody have an e-mail address for Apple,  preferably iTunes folks?
    This is a handicap accessability problem since my wife cannot see and depends on these audio books.
    Obviously I will try that link to that Chapter and Verse site and see what I can do.
    Thank you for your quick response

  • How can I use two sequences w/ different frame rates

    I shot wedding (on Sony Z5) initially (1st tape) in DV widescreen (29.97/ 30 fps) but tapes 2, 3 & 4 were shot 1080p24 fps  Big mistake; now obvious.
    Edited all in FCP 6. On trying to cut & paste sequences together I get " cannot nest sequences with different editing timebases".
    I have 23 min.intro/ ceremony sequence as stand alone QT mov now. How can I best convert that and/or merge it w/ the rest ( 62 min. 24 fps  sequences), or perform other action to unite the diff  frame rates into one, w/ best looking quality for the DVD/ bride & groom? Trying to beat Xmas deadline...
    Thanks in advance! Happy Holidays to all.
    3 Ghz Intel Core 2 Duo / 8 GB / OS 10.6.8  FCP 6.0.6

    I went back and forth on this.
    Ordinarily, I'd conform to the format that the majority of the footage was shot in. But if you're going to DVD, and it's going to be compressed to 480 anyway, then why not down convert the 1080 footage to 480?.  At the same time, I would imagine re-timing the 24 (23.98?) to 29.97 would look reasonably consistent with the 29.97 SD.
    This could be done in FCP, but I think Compressor will produce a better result. The adjustments you need are in the Settings menu in the Encoder (with Audio set to pass through), Geometry (720x480 16:9 Anamorphic), and Frame Controls (Resize Filter set to Best).
    This will not be a short encode, so I would first test a short section to double check your settings and sound sync are right, and to compare against the quality of tape 1.
    Good luck.
    Russ

Maybe you are looking for

  • Copied photos to wrong place

    My Lightroom  image files (photos)  are on an external drive that I back up frequently. Somehow, during the import process I copied several day's photos to my "My Pictures" folder on my main drive by mistake. Is there a way to move those files to the

  • Creating Transaction code for selection screen of one ztable

    Hi ,     i have one Ztable in order see the data in it , he wants one new transaction . by executing tht transaction he wants to view the data inside the table. i have created one transaction code by taking the transaction type as report transaction

  • How can I install Adobe Acrobat 6.0 on Windows 8.1?

    I originally installed Adobe Acrobat 6.0 on Windows XP. I've upgraded the OS to Windows 8.1 and have a compatibility error message when trying to re-install Adobe Acrobat 6.0. Any suggestions? Thank you. Roman.

  • Need Help Setting Up Cluster

    I'm a grad student in a lab that does a lot of bioinformatics computing. I am a bit more computer oriented than some of the others in the lab, and the PI (head professor) and another lab worker have turned to me to see if I can help them. They have t

  • Past 12 months Average!

    Hello BW Gurus, Can any one help me in getting past 12 months average? Do we need to write any code? Currently I am using formula key figure (period1) and text variable (zperiod1)in the Bex to calculate the past 12 months average but for some reason