VariableScope problem with sequence containers (SSIS 2012)

Hi,
a co-worker of mine experienced a problem with variable scopes in SSIS 2012 when copying a sequence container.
This is what he tried to do:
Create a sequence container with a data flow task and a script component
Add variable "a" with scope set to the sequence container
Add "a" to ReadOnlyVariables in the script component and assign it to a variable within PreExecute() in the script
Copy the sequence container (with DFT and SC)
Rename (or remove and add new - doesn't matter) variable "b" with scope set to the new sequence container
Change variable in ReadOnlyVariables of copied SC to "b", change it in the script as well
Now when executing the package, one of the sequence containers will always fail. Interestingly enough, it is not always the same but switches seemingly randomly. It doesn't matter if the script is written in C# or VB.
The following error is thrown:
Exception from HRESULT: 0xC0010009
   at Microsoft.SqlServer.Dts.Runtime.Wrapper.IDTSVariables100.get_Item(Object Index)
   at SC_f8fa68ce667a42d2b4b154c26831db5f.Variables.get_VarForCopySeqC()
   at SC_f8fa68ce667a42d2b4b154c26831db5f.ScriptMain.PreExecute()
   at Microsoft.SqlServer.Dts.Pipeline.ScriptComponentHost.PreExecute()
In this case, VarForCopySeqC is the variable used in the copied sequence container, but the failing one is the original sequence container.
Does anyone have an idea how to resolve this? Thanks in advance for anyone helping us out here!
Regards,
Thorsten H.

If the variable is scoped to the Sequence Container then you could leave it as is in the new Sequence Container too. Why rename it to "b" ?
Granular scoping makes the package debugging and maintenance a lot more difficult because you have to bring the component in focus to see its scoped variables. It is easier to have package-scoped variables IMHO.
- Aalamjeet Rangi | (Blog)

Similar Messages

  • Problems with Sequence Operator in OWB

    Hi everybody,
    i want to use a sequence in my mapping. Now i have two problems.
    The first problem is the following. When i want to import my sequence (exists on my DB) i can select the sequence in the Selection Window, but when i click on Import i didn't see it in the Design Center, also there is no window which tells me that i have successfully imported the sequence.
    The second problem is, when i drag the Sequence Operator into my Mapping i shows the Selection Window where i have to select the poject and object to bind the operator. But i can't select any object.
    Can anyone help me with my problems and tell me how i can use a Sequence and the Sequence Operator in my Mapping
    Many thanks in advance.
    Greetings

    Hi everyone!
    I'm having a repeated problem with sequences in OWB: I'm filling a TIME table with 1096 rows. Now matter how and when I create the sequence it always starts with 2 instead of 1. Moreover, the last value of the sequence is 1101, when it was supposed to be 1097 or 1098....
    I did achieve the right ouput sometimes, but I must be doing something wrong. Here are the several ways I've tried in OWB:
    1) I've created all the sequences by sql code, in SQL DEVELOPER or PLUS*, and then imported to OWB. Because of being imported, I didn't have to deploy each sequence. Then, I've connected (by drag and drop to the canvas mapping) the sequence I wanted with NEXTVAL (as I always do) attached do TIME_ID of table TIME;
    2) I've dropped and created, several times(as before), the sequences and never had problems..until now. I've also experimented creating, by scratch, the sequences just in OWB and then deploy them in Control Center. After this, deployed the mapping and executed, just like in 1).
    So, the difference lies on how I create the sequences and what are the correct steps to create, deploy (if needed), deploy the map and execute the map.
    This is insain and I really need this to work. I've tried so many ways....
    Could someone PLEASE help me with this? Any thoughts?

  • Problem with sequences after import

    We recently imported some table data from QA to DEV and now the DEV database has issues with sequences errors. How can I resolve the problem with sequences since we have constraint violation errors as a result of the table sequences being out of sync after the import of several schema tables.

    We run a script like the following to get the sequences as close as possible after importing from PROD to DEV:
    set serveroutput on;
    DECLARE
         CURSOR CUR IS
              SELECT      otherdb_seq.sequence_owner AS owner,
                        otherdb_seq.sequence_name AS seq_nm,
                        TO_CHAR(otherdb_seq.last_number) AS start_nr
              FROM           dba_sequences currdb_seq,
                        dba_sequences@prod otherdb_seq
         WHERE      currdb_seq.sequence_owner IN ('~schemaname~') AND
                        currdb_seq.sequence_owner = otherdb_seq.sequence_owner AND
                   currdb_seq.SEQUENCE_NAME = otherdb_seq.sequence_name
              ORDER BY      1, 2;
         sql_string VARCHAR2(500);
    BEGIN
         FOR REC IN CUR
         LOOP
         sql_string := 'DROP SEQUENCE '||REC.owner||'.'||REC.seq_nm;
              DBMS_OUTPUT.PUT_LINE(sql_string||';');
              EXECUTE IMMEDIATE sql_string;
              sql_string := 'CREATE SEQUENCE '||REC.owner||'.'||REC.seq_nm;
              sql_string := sql_string ||' START WITH '||REC.start_nr;
              sql_string := sql_string ||' MAXVALUE 999999999999999999999999999';
              sql_string := sql_string ||' MINVALUE '||REC.start_nr;
              sql_string := sql_string ||' NOCYCLE NOCACHE ORDER';
              DBMS_OUTPUT.PUT_LINE(sql_string||';');
              EXECUTE IMMEDIATE sql_string;
              sql_string := 'DROP PUBLIC SYNONYM '||REC.seq_nm;
              DBMS_OUTPUT.PUT_LINE(sql_string||';');
              EXECUTE IMMEDIATE sql_string;
              sql_string := 'CREATE PUBLIC SYNONYM '||REC.seq_nm||' FOR '||REC.owner||'.'||REC.seq_nm;
              DBMS_OUTPUT.PUT_LINE(sql_string||';');
              EXECUTE IMMEDIATE sql_string;
              sql_string := 'GRANT SELECT ON '||REC.owner||'.'||REC.seq_nm||' TO PUBLIC';
              DBMS_OUTPUT.PUT_LINE(sql_string||';');
              EXECUTE IMMEDIATE sql_string;
         END LOOP;
    END;

  • CheckPoints with Sequence containers - Please help

    Hi experts,
    I have a very critical requirement using checkpoints.I have SSIS 2012.
    As you can see, there are two sequence containers (Call it as SEQC). SEQC1 has Execute SQL tasks 1 , 2 and 3. Similarly SEQC2 has tasks  4,5 and 6.
    After that two individual tasks task 7 & 8.
    The requirement is, I have to implement both CheckPoint and Transaction feature in the package.That means,the restartability should be BLOCK wise. ie
    1) If the task 3 (inside SEQc1) fails, then the tasks done by the Task1 and task2 should be rolled back and next execution should start from the Task1 and NOT from the Task3.
    2) If the SEQC1 is success, but the task 6 (inside SEQc2) fails, then the tasks done by the SEQC1 should be COMMITTED and tasks done by the Task4 and task5 should be rolled back  and next execution SHOULD start from the Task4 and NOT from the Task6 or
    NOT from Task1 of SEQC1.
    3) If the SEQC1 and SEQC2 succeeds but the next individual task Task7 fails, then SEQC1 and SEQC2 tasks should be committed and the next execution starts only from the Task7.
    Could you please tell me is it possible to combine  CheckPoint and transaction options? If not, any workarounds?
    Requirements 1 and 2 can be achieved ONLY when i enable'Transactions=Required' in SEQC 1 and 2 . But when I enable this, if the task6 in SEQC2 fails, the the next execution starts from task1 of SEQC1, but the requirement is to start from task4 of SEQC2.
    I tried a lot but not able to accomplish this.Your help would be greatly appreciated.

    From Books online
    Using checkpoints and transactions in the same package could cause unexpected results. For example, when a package fails and restarts
    from a checkpoint, the package might repeat a transaction that has already been successfully committed.
    That being said you can use checkpoints and make it start from failed step. However I dont think you'll be able to start from start of the sequence generator as other tasks previously successful would have already logged the info to checkpoint file so they
    will not get executed again.
    Please Mark This As Answer if it helps to solve the issue Visakh ---------------------------- http://visakhm.blogspot.com/ https://www.facebook.com/VmBlogs

  • XSLT-problem with sequence attributes

    Hi,
    in my XSLT-program (i'm a real newbie!) i'm adding dynamically attributes and their values to a tag, by using the following code :
    <SUPPLIER>
      <xsl:attribute name="FUNLOC">
        <xsl:value-of select="SUPPLIER_FUNLOC" />
      </xsl:attribute>
      <xsl:attribute name="NAME">
        <xsl:value-of select="SUPPLIER_NAME" />
      </xsl:attribute>
      <xsl:attribute name="LOCATION">
        <xsl:value-of select="SUPPLIER_LOCATION" />
      </xsl:attribute>
      </SUPPLIER>
    The problem is that the attributes in the resulting xml-file are alphabetically ordered. For instance :
    <SUPPLIER FUNLOC="9522222" LOCATION="NL" NAME="Test vendor VMOI">
    How can i arrange that the result of the xml-file is a sequence of entrance is taken, so
    <SUPPLIER FUNLOC="9522222" NAME="Test vendor VMOI" LOCATION="NL" >
    regards,
    Hans
    [email protected]

    Hi Hans,
    I think you're using ABAP-XSLT?!
    If you do so, you can solve the sorting problem by using a 1:1 Message mapping after the ABAP-XSLT mapping. This resolves the problem that the nodes are not in the correct order.
    In your interface mapping you have to configure 2 mappings:
    1: ABAP-XSLT
    2: Message mapping.
    Of course this means that the total processing time increases a little bit.
    I had the same problem with the sequence of my (ACC_DOCUMENT) idoc nodes, the ABAP-XSLT screwed up the idoc, but the 1:1 message mapping solved the problem.
    Regards,
    Mark

  • An visual illustration of my problem with V4's "process 2012"

    Tonight's sunset taken with a Nikon D700 w/400mm f2.8 lens. Here is the same photo and its virtual copy with very little done to them yet except one is set to 2012 and the other set to 2010. both were left at Adobe Standard, then set to auto tone to get the fairest comparison possible:
    2012. Notice the thick yellow transition of mostly one color. While the background looks a little clearer, you must butcher it to death in order to smooth out that ugly band. 
    And I am pretty sure the shadow color is very slightly "off".  I realize that "off" is relative, but I would call this one "off" because it is the newer process. This 2012 color might actually look slightly better, but that's not the point --it should look identical to 2010 "as shot". But I can live with that --the big issue is what is causing the thick ugly band.
    2010:   Notice that the gradient from bright to dark is much smoother (and easier to work with). This is a much easier start point for developing.  I'd say 10 steps max would turn this into a decent image.  I have no idea if it could even be done in 2012.
    This is the core of my problem with 2012 --the contrast does not work evenly across all brightnesses.  They made some things look good at the great expense of others. You cannot adjust one brightness range of a photo without thoroughly trashing another. 
    2012 appears to work great on perfect auto-matrix-exposed photos of medium dynamic range.  Another kind of photo I take are action event photos in uneven arena lighting which are all deliberately underexposed because there is no second chance to capture a winning moment (a blown-out photo will not get used by an exhibitor -- this camera body is quite forgiving of underexposure). These are similarly difficult to work with in 2012 for the same reasons.
    How many types of different photos (e.g., action, portrait, landscape, various exposure extremes, etc)  was this alpha version tested on?  And who do they have evaluating these test results, software engineers or actual artists?
    One answer might be to just keep using 2010 --that is not the point I am trying to make.  That would mean this product is no longer improving for me, the user.
    Any constructive feedback, suggestions, links, history lessons, etc. would be very appreciated.

    Hi George,
    You're welcome. And, nice view from your backyard!
    Yeah, I think it's a common mistake to dive into the shadows or highlights slider before taking a good-enough whack at exposure. And, in my opinion, nothing wrong with doing that, as long as you remember that exposure is a very key adjustment in PV2012, and it should always be revisited before finalizing / fine tuning. It's always good to take a whack at contrast too before hitting highlights and shadows, but in my opinion, it is far less critical to overall tonability than exposure is. Once exposure is set correctly, you can fine tune contrast & highlights/shadows with relative impunity, but it does not work so well to try and set contrast/highlights/shadow and then fine tune exposure.
    Also, it's possible that exposure needs to be set higher on average than most newerbies realize, and if it's too bright knock it down with -highlights and -blacks. The opposite may also be true for some people, I don't know. But for me, in Lr3, I was very careful not to set exposure too high for fear of blowing out the highlights (and not being a big fan of Lr3 highlight recovery), *and* I was careful not to set brightness too high to keep from washing out the midtones. Which left fill-light, which I used to brighten, but Lr3 fill would often degrade quality if pushed too hard. So, I often lived with not optimally brightened photos, brightened here or there with a touch of tone curve (and/or locals).
    That same technique does not work so well in Lr4, since shadows slider may not have enough kick to it until exposure is boosted - one of the reasons people coming from Lr3 often complain about Lr4 shadows slider, before they've really learned how to set exposure.
    In Lr4, highlight recovery is sorta like an improved right-side version of Lr3 fill. i.e. one can "over-brighten", and rely on highlights slider to check it (analogous to "under-brightening" in Lr3 and using fill to compensate). -whites is more akin to Lr3 highlight recovery, only different...
    Another thing: I almost always start out editing with the exact same values for -highlights as +shadows. And only during fine tuning, maybe choose to diverge. It's surprising how often having those values equal and opposite can allow one to find the correct exposure, and only then, maybe, skew highlights/shadows, as a fine tuning thing.
    Also, for concert photos, or any other situation when there is a big lump of really dark tones that are important, and a small lump of really light tones that are important (e.g. concert lights), and a dearth of midtones, -whites and +blacks sliders can play bigger roles than -highlights and +shadows for "recovery & fill", than in other more "normal" photos.
    Lastly, my Lr4 tone curves, more often than not (and more often than in Lr3), have a debrightening shape to them, since sometimes it seems good to set exposure higher than I really want in order to achieve overall "tonability", then drop brightness strategically using the curve (and/or locals).
    I'm sure other people do things differently with equal success.
    PS - Where should I send the DNG? (you can contact me via PM or my website).
    Final thoughts:
    The "recipe" I've given here (-blacks, +whites, relatively high exposure & contrast, fairly strong -highlight = +shadows, a modicum of clarity) makes for a very punchy photo with highly detailed shadows, midtones, and highlights. I tend to like such a look on many photos - shooting landscapes and macros, etc... But it can be a bit too intense for portraits or if for whatever reason you prefer a more subtle "natural"/neutral look. One of the awesome things about PV2012 is that you can control the style of look you get. If you want the opposite, then do the opposite, e.g. easy on the -blacks or even use +blacks instead of +shadows, back off on the contrast and exposure so you need less -highlights, use whites = 0 or -whites. You can end up with a very old-school photo kinda look that way - more subtle and gentle, softer...
    Rule 5: Enjoy!
    Cheers,
    Rob

  • Problem with Sequence in Form

    I created a sequence as:
    -- Create sequence-----
    create sequence MY_SEQ minvalue 1 maxvalue 100000 start with 21increment by 1cache 20 order;
    In Form(Form10g) I set the Initial Value propery as:
    :sequence.30_seq.nextval
    The problem is, Whenever I go for Insert Item and cancel Insertion. The sequence continues to the next after next. How do I keep it with MAX+1 through Sequence

    Yes, I've worked with something like that before. I'm not sure if there was an issue with using a 'for update nowait' lock, but it used dbms_lock instead. After getting a lock, delete the record. If the user saves the form then the sequence will used there, if they roll back it will remain on the table.
    But with more than one user and the option not to save after the sequence has been issued, you could still have gaps in the sequences within each session and sequence numbers will not always be issued in ascending order. In the long term you will have a continuous sequence on the table (unless a record is deleted), but in the short term it may not look like it, so be prepared for complaints.

  • Calling Stored Procedure with Windows Authentication SSIS 2012

    We are upgrading to SQL Server 2012 and our SSIS Packages are failing with: "The operation cannot be started by an account that uses SQL Server Authentication. Start the operation with an account that uses Windows Authentication. Error on line 215:
    (SQR 3913) Could not EXECUTE stored procedure."
    I understand that we need to change over to Windows Authentication but not sure how to authenticate with windows. Our stored procedures are called from an SQR (
    Structured Query Reporter)
    Here is the code:
    begin-procedure Download-Data
    EXECUTE DO=LT_REPORT_SSIS_MSG
    LT_INTERFACE..LT_AR_CUSTOMER_SSIS $business_unit
    INTO &SSIS_MSG char(120)
    end-procedure Download-Data
    Any help would be greatly appreciated!

    The question is how SQR allows it. Thus it becomes not SSIS related
    Arthur My Blog

  • Error with sequence containers and global temp variables

    I have a process which does the following -
    1. Inside a sequence container an execute sql task has a stored proc which inserts result set into a global temp table.
    2. DFT after the execute sql uses that global temp as a source and the final destinatoion is a oledb destination.
    I have done the following also -
    1. Set the connection manager property RetainSameConnection  = true
    2. Delay validation of dft to true
    3. Validatexternalmetadata of source inside dft to false.
    The first task inside the sequence container works fine(execute sql task),but it fails in the dft with errors as -
    [DST xyz[576]] Error: SSIS Error Code DTS_E_OLEDBERROR.  An OLE DB error has occurred. Error code: 0x80040E37.
    An OLE DB record is available.  Source: "Microsoft SQL Server Native Client 10.0"  Hresult: 0x80040E37  Description: "Invalid object name 'abcd'.".
    [DST xyz[576]] Error: Failed to open a fastload rowset for "[abcd]". Check that the object exists in the database.
    [SSIS.Pipeline] Error: component "DST xyz" (576) failed the pre-execute phase and returned error code 0xC0202040.Could anyone guide me with what i am doing wrong or ignorinf some property.Thanks

    Hi app087,
    Based on your description, I create a sample package in my environment, and I can reproduce the issue. The following steps are for your references:
    Create a stored procedure with the query below in my environment:
    create procedure PTitles
    as
    DROP TABLE ##T123;
    select * INTO ##T123 from [table];
    Drag a Execute SQL Task and a Data Flow Task to a Sequence Container.
    In the Execute SQL Task, select the database of [table] table as the Connection and type the query below as SQLStatement:
    EXEC PTitles
    In the Data Flow Task, select servername.tempdb as the connection manager for the OLE DB Source.
    Map columns correctly in OLE DB Destination.
    Execute the Execute SQL Task at the first time, it works fine. Then execute the Data Flow Task, it fails. Then execute the Execute SQL Task again, it also fails with the error below:
    Execute SQL Task: Executing the query "EXEC PTitles" failed with the following error: "Cannot drop the table '##T123', because it does not exist or you do not have permission.".
    Please execute the Execute SQL Task again to check whether your issue is the same scenario. As per my understanding, it seems that the query “EXEC PTitles” in Execute SQL Task doesn’t create the global temp table ##T123. To fix this issue, I modify the stored
    procedure to like below, then the package can works very well.
    ALTER procedure PTitles
    as
    IF OBJECT_ID('TEMPDB.DBO.##T123') IS NULL
    SELECT * INTO ##T123 FROM [table];
    TRUNCATE TABLE ##t123;
    INSERT INTO ##T123 select * from [table];
    Besides, as you finally did, we can modify the stored procedure as below, then directly use single Data Flow task that with the “EXEC PTitles” as SQL Command query in Source, then load the data to destination table to simplify the package.
    ALTER procedure PTitles
    as
    SELECT * FROM [table];
    If there are any other questions, please post the stored procedure you are using.
    Thanks,
    Katherine Xiong
    Katherine Xiong
    TechNet Community Support

  • Problems with sequence context and W2000

    I have a Test Stand 1.0 sequence that works correctly in W98 but I have tried to execute in a PC with W2000 and the sequence doesn´t work. It seems that the problem is with the sequence context activeX pointer.

    Hello,
    TestStand 1.0 and 1.0.1 did not support operation under Windows 2000. TestStand 1.0.2 and later did. Are you by any chance using one of the versions not supported? If so, I would recommend upgrading to the latest version which is TestStand 3.0.
    Bob

  • Internet connectivity problems with Macbook Pro, mid 2012.

    I have a Macbook Pro, mid 2012, running OS 10.8.5. My able to access the Internet is intermittent, both with Ethernet or Wifi. When I check Network settings, it indicates that I am connected, even though I cannot access the Internet.  I have to restart the compute to gain access again, which doesn't last. I've taken it to the local Apple Store.  They ran thorough diangostics tests which found no hardware problems.  I have done complete clean reinstalls of the OS as well.  I also have frequent Kernel Panic restarts.  I have no problems connecting through my router for my Imac via Ethernet, and wirelessly for a Windows laptop and smartphones and iPod.  Any suggstions out there?

    If you have more than one user account, you must be logged in as an administrator to carry out these instructions.
    Launch the Console application in any of the following ways:
    ☞ Enter the first few letters of its name into a Spotlight search. Select it in the results (it should be at the top.)
    ☞ In the Finder, select Go ▹ Utilities from the menu bar, or press the key combination shift-command-U. The application is in the folder that opens.
    ☞ Open LaunchPad. Click Utilities, then Console in the icon grid.
    Select the most recent panic log under the heading System Diagnostic Reports on the left. If you don't see that heading, select  
    View ▹ Show Log List   from the menu bar. Post the entire contents of the panic report — the text, please, not a screenshot. In the interest of privacy, I suggest you edit out the “Anonymous UUID,” a long string of letters, numbers, and dashes in the header and body of the report, if it’s present (it may not be.) Please don't post shutdownStall, spin, or hang reports.

  • This is a tough one!  Problem with sequence settings....

    OK...where to begin!
    Here is some background (I have posted many questions about these issues and have resolved most of them, except this project)
    1.Recently upgraded to 6.0.1
    2. 'lost' my scratch disc (ok, I accidently deleted it)
    3. All projects are OK to do without, except this one!
    4. The footage for this project was from 2 cameras: one is DV and one is HD. The HD footage was downgraded to DV during capture from camera for the original project. Now, with 6.0.1, I bring it in HD and mix the footage on the same timeline with the DV (which is so cool and so much easier for me!) But I wanted to make sure and do the same thing I did for the original clips on this project, so when I just batch captured all the clips, I brought the HD in as DV. Both were shot wide screen.
    This one sequence is 6 minutes long and I COULD recreate it, but it is very detailed and has a lot of filters, edits, etc. Here is the problem:
    I did a batch capture on all the clips and successfully got all the clips back and the timeline plays, but the two different "cameras" footage looks different in the canvas: (the sequence settings are frame size: ntsc dv 3:2, pixel aspect ratio ntsc-ccir601/dv and anormorphic is checked)
    The HD footage, downgraded to DV, looks fine
    The DV footage is stretched, and has a bar on the top and bottom.
    I have played around with the sequence settings and these are the best results i can get.
    Now I made a new sequence with same settings as above and i dragged a couple different clips from the browser into the timeline and they are fine... (these clips are the same ones in the problem sequence that look stretched)
    Any ideas??
    Thanks in advance!!

    I understood that the sequence looked at the first stuff dropped into it for behavior. If you dropped the problem material from the first sequence into the second sequence you created prior to dropping any thing else in then it will behave as you would expect. if you dropped footage that wasn't formatted the same as your sequence settings you get the "...would you like to ..." and the sequence settings get changed. I avoid this because some of the changes applied don't allow my Kona to playout.

  • HT1338 A Problem with the Oct 18, 2012 Java Update

    Yesterday's (Oct 18, 2012) Java update does not start with my applications. What can I do?

    JavaQuestion wrote:
    Yesterday's (Oct 18, 2012) Java update does not start with my applications.
    In this thread https://discussions.apple.com/message/20074533 three different solutions were used, all of which would seem to be rather complicated. Hopefully a simple solution will show up soon.

  • Multitable insert problem with sequences

    Lets consider that I have the folowing configuration:
    create table t1 (col number, col2 varchar2(100));
    create table t2 (col number, col2 varchar2(100));
    create sequence s;
    I want to put the same sequence value into many tables with one multitable insert like:
    insert all
    into t1 (col, col2) values (a, 'dummy 1.1')
    into t2 (col, col2) values (a, 'dummy 1.1')
    into t2 (col, col2) values (a, 'dummy 1.2')
    into t2 (col, col2) values (a, 'dummy 1.3')
    select s.nextval as a from dual
    I know that the previous statement is "impossible" (acording oracle documentation http://download-uk.oracle.com/docs/cd/B19306_01/server.102/b14200/statements_9014.htm it is forbidden and issue "ORA-02287: sequence number not allowed here" exception)
    Do you have any ideas how to workaround this?

    SQL> insert all
      2  into t1 (col, col2) values (s.nextval, 'dummy 1.1')
      3  into t2 (col, col2) values (s.currval, 'dummy 1.1')
      4  into t2 (col, col2) values (s.currval, 'dummy 1.2')
      5  into t2 (col, col2) values (s.currval, 'dummy 1.3')
      6  select 1 from dual;
    4 rows created.
    SQL> select *from t1;
           COL COL2
             1 dummy 1.1
    1 row selected.
    SQL> select * from t2;
           COL COL2
             1 dummy 1.1
             1 dummy 1.2
             1 dummy 1.3
    3 rows selected.
    SQL> Nicolas.

  • Problem with sequences

    I'm having trouble finding a sequence for a video file that I recorded.  The settings for the video are 1680x1050 (1.0) 200fps.  It's a video that I recorded off my screen.  What sequence should I use to make this work properly?  I looked through all of the presets and didn't see anything that looked close to that.
    Thanks for any help.

    Use General in the Sequence settings to create a desktop sequence, or even easier, drag a clip from the project panel to the New Item icon and a new sequence with the correct settings will be created automatically.

Maybe you are looking for

  • Apple Singapore Keeps Canceling My iPhone 5 Order

    Hi, Apple Online Singapore keeps canceling my order of iPhone 5 - a gift for my mom and dad for their anniversary (they are still using the 3G iphones.) The first one being I used my husband's credit card (we wanted the credit points for the purchase

  • Can I work from external hard drive?

    I have a client with a current non-Intel PowerBook and ready to go for Final Cut Studio. Can any of the 40 gigabytes of installed data be moved to an external drive, deleted from the PowerBook and accessed from the external drive? Ken [email protecte

  • Bind variables in jena WLS SPARQL Queries

    Dear all, We have read about the possibilities of the jena support for bind variables in the documentation (http://docs.oracle.com/cd/E11882_01/appdev.112/e25609/sem_jena.htm#RDFRM248). In the following topic of jun 14 2014 (Bind Variables in SPARQL

  • Airport wireless update installation v1.0 on Pismo/Panther

    I'm getting a blue, then grey screen on startup on my Pismo after updating the latest Apple update for wireless three days ago... Can boot into safe mode (cmd-s on restart); fsck -fy checks out no problems. Boots as target disk, and hd is ok. Boots f

  • Cant connect to oracle error 12154

    It appears I also have a simple cannot connect to the oracle database error when starting to use crystal reports from my desk top. Have installed the oracle client 10.2.0.4 and can connect using oracle net manager and the tnsnames.ora file was create