9.2 issue with  Sequence Numbers

We are using OWB 9.2 and RDBMS 9.2 on windows NT.
When using set based functionality i.e. Merge Statement, or Row Based, we have noticed that our sequence object gets incremented during updates even though it is only associated with the insert and not the update.
Is this normal behaviour or an issue ???

Jagadish,
You will not get updates because you by default match on the keys on the table. In other words you emp_id and the seq.nextval are matched to what you have in the table and they will never match (because of the nextval).
Two things you can do:
- Change the composite key (e.g. change the design)
- Change the configuration in OWB
Let's look at the second one, what you must do is the following:
1) On the target table, select operator properties and find "Match by Constraint". Highlight that and change this setting to No Constraints.
You now are not using the constraint, so you must tell OWB what to match on. You do this by:
2) Highlight the EMPID column and select attribute properties
3) In the loading properties node set the following for EMPID:
Load column when inserting row => Yes
Load column when updating row => No
Match column when updating row => Yes
4) Highlight the other columns, for example ATTEMPT_COUNT and select attribute properties
5) In the loading properties node set the following for ATTEMTP_COUNT:
Load column when inserting row => Yes
Load column when updating row => Yes
Match column when updating row => No
This should allow you to update based on the EMPID alone.
Hope this helps,
Jean-Pierre

Similar Messages

  • Issue with sequence.currval in INSERT ALL...

    Hi Gurus,
    I am having an issue with using sequence.currval in INSERT ALL with WHEN clause.Please check following example
    Let say I have 4 tables
    1) SOURCE_PARENT
    PARENT_ID
    ========
    10
    20
    2) SOURCE_CHILD
    PARENT_ID CHILD_ID
    ========= ========
    10     1
    10     2
    20     1
    20     2
    Now i have another 2 tables same as above definition(DEST_PARENT, DEST_CHILD),which i want to populate with above source data with new parent_id's from a sequence.
    So I have used INSERT ALL as follows.
    =====================================================
    INSERT ALL
    WHEN (prev_parent_id = 0)THEN
    INTO dest_parent
    values(test_s.nextval)
    when 1 = 1 then
    INTO dest_child
    values(test_s.currval,child_id)
    select
    p.parent_id
    ,c.child_id
    ,LAG(c.parent_id, 1, 0) OVER (PARTITION BY c.parent_id ORDER BY c.child_id) prev_parent_id
    from
    source_parent p
    ,source_child c
    where
    p.parent_id = c.parent_id
    order by p.parent_id
    ========================================================
    Above INSERT ALL created following rows in DEST tables
    1) DEST_PARENT
    PARENT_ID
    =========
    75
    77
    2)DEST_CHILD
    PARENT_ID CHILD_ID
    ========= =======
    75     1
    76     2 --- this should be same as above record
    77     1
    78     2 --this should be same as above record
    As you can see test_s.nextval is executed 4 times even we do have WHEN Clause in INSERT ALL
    Can you please check what's wrong in this INSERT ALL statement?
    (or)
    Any otherway of doing these INSERTS in a single SQL statement?
    Any help would be appreciated!!
    Thanks
    srinivas.L

    Sorry, but this solution does not work. I had to remove the constraints on the two tables dest_parent and dest_child just to show you, how bad your solution is
    SQL> select * from source_parent;
    PARENT_ID
            10
            20
    2 rows selected.
    SQL> select * from source_child;
    PARENT_ID   CHILD_ID
            10          1
            10          2
            20          1
            20          2
            20          3
    5 rows selected.
    SQL> select * from dest_parent;
    no rows selected
    SQL> select * from dest_child;
    no rows selected
    SQL> insert all when
      2       (PREV_PARENT_ID = 0) then into DEST_PARENT
      3  values
      4       (TEST_S.nextval) when 1 = 1 then into DEST_CHILD
      5  values
      6       (case when PREV_PARENT_ID != 0 then TEST_S.currval - 1 else TEST_S.currval end,
      7        CHILD_ID)
      8       select P.PARENT_ID,
      9              C.CHILD_ID,
    10              LAG(C.PARENT_ID, 1, 0) OVER(partition by C.PARENT_ID order by C.CHILD_ID) PREV_PARENT_ID
    11       from SOURCE_PARENT P, SOURCE_CHILD C
    12       where P.PARENT_ID = C.PARENT_ID
    13       order by P.PARENT_ID
    14  /
    7 rows created.
    SQL> select * from dest_parent;
    PARENT_ID
            23
            26
    2 rows selected.
    SQL> select * from dest_child;
    PARENT_ID   CHILD_ID
            21          2   -- ??? !!!
            23          1
            23          2
            24          3   -- !!!
            26          1
    5 rows selected.
    SQL>

  • Issues with Sequence Generator

    I'm having trouble with Sequence generator not generating continuous numbers starting from 1, each time I run the mapping.
    I want the Sequence to start from 1, each time the mapping is run. For this to happen, I'm using a pre-mapping operator which uses an oracle procedure to reset the sequence.
    But, the sequence generates the numbers from some weird number, say 3508 and then jumps to 5006 and so on. I'm not able to track what's wrong with the sequence. I have stopped the caching in Sequence but still it hasn't helped. I'm sure and have verified that the procedure being used to reset the sequence is running fine.
    Please suggest some additional parameters/properties at OWB level to be checked for the sequence, if any OR any thoughts on why the sequence is not starting from 1. Thanks in advance.
    Thanks,
    Sachin
    Edited by: 850549 on Apr 23, 2011 11:43 AM
    Edited by: 850549 on Apr 23, 2011 11:44 AM

    Could you check whether the sequence you use has a cache value greater than 1 defined in the database. This way if your database regularly should be stoped, e.g for offline backup, you'll loose the sequence values that were unused in memory at that time. That way the gaps in your surrogate ids would be explainable.

  • Alter a column with sequence numbers

    Hi to all,
    i have a table (sample) with cplumns: sno, sname,dob and so on..........
    In this table i have milions of rows with random numbers in column sno
    i want to give the give the sequence numbers from 1 to 10000 in the sno column to the begining rows in the table
    (Oracle)
    could u post the code plese
    thanks & Regards
    Tangella

    Tangella wrote:
    Hi to all,
    i have a table (sample) with cplumns: sno, sname,dob and so on..........
    In this table i have milions of rows with random numbers in column sno
    i want to give the give the sequence numbers from 1 to 10000 in the sno column to the begining rows in the table
    (Oracle)
    could u post the code plese
    thanks & Regards
    TangellaHow do you define "the beginning rows in the table"? Rows in a relational, heap table have no "order" to them. There is no concept of "first".
    And once that is defined, why would you want to assign sequence number to only 10k our of "millions" of rows?

  • LR5.3 Export issue with Sequence Renumbering

    I just discovered an issue with the LR5.3 Export module on my Windows 7 system when exporting JPEG image files with 'Sequence' File renaming and 'Original' File Settings to a subfolder. When exporting approximately 100 JPEG image files LR shows a file count in the subfolder of ~1/2 the actual file count and the ability to 'Synchronize Folder' disappears. The correct number of files appear in the subfolder using Windows Explorer, so they all were successfully exported and renamed properly. LR must be closed and reopened to restore the ability to 'Synchronize Folders' and/or 'Import' images using the Import module. I've never encountered this problem before since I normally process raw image files, which do not exhibit this issue.
    Here are screenshots:

    Posted to the Photoshop Family site as a problem:
    http://feedback.photoshop.com/photoshop_family/topics/lr5_3_export_sequence_numbering_issu e

  • WinPE and FullOS Issues with Disk Numbers

    So, I seem to have run into an issue where I'm trying to image up an HP Z15 laptop and it has dual HDD's in
    it.  While imaging it seems to just die after it boots into the full OS and try's to configure the SCCM Client. I've narrowed down the issue to the secondary HDD causing the issue. The Main drive is a SSD that's 256GB, and the additional drive in the
    DVD-Rom Bay is a 750 GB drive.
    When booting into WinPE Disk 0 is the SSD and Disk 1 is the 750GB. I can partition these
    up just fine in PE, but when it flips to the full OS, the drive numbers change, and then the 750 GB drive where the _SMSTASKSequence folder is located is no longer accessible until it's assigned a driver letter. I was able to look in WinPE and the driver are
    created correctly and look correct with drive letters and all, but once that reboot happens I was reading the PNP takes over and decides whatever it wants each disk number to be.
    I know someone will say something about the drivers, I've checked those and downloaded the latest drivers from
    HP for this model and nothing has changed. I've also seen where some have suggested that it's best to partition and format the main drive, then wait until in the full OS to format and partition the other drive but I need to find a way to find out which drive
    # isn't formatted so that I can automate this.  Part of the main issue with this whole thing is the fact that the encryption software we are using doesn't allow for a drive to be partitioned and formatted after it's installed. I'm able to image the system
    up fine if I disable the secondary HDD and then just format it when the image is complete.
    Any thoughts or recommendations would be appreciated. 
    Thanks!

    Hi,
    >>"once that reboot happens I was reading the PNP takes over and decides whatever it wants each disk number to be."
    Where were you reading this from? Logs? Is there any information in smsts.log?
    >>"the _SMSTASKSequence folder is located is no longer accessible until it's assigned a driver letter"
    If you reboot the computer after you assign a drive letter, does the disk still have a drive letter? If that is the case, you could try to add a startup diskpart script to assign a drive letter.
    Best Regards,
    Joyce

  • Multiple volumes with sequence numbers

    Hello
    i see a strange behaviour for some volumes. For instance - i have an external hard drive connected via Firewire 800, where my Time Machine is located.
    If i look into the volumes folder i do see several folders with a red button on it named Time Machine, Time Machine 1, Time Machine 2, Time Machine 3. Only Time Machine 4 is displayed as an alias and contains the actual files. All others are empty. The same observation applies to my idisk. It seems that every day my Mac creates a new folder or a new alias. I have now 81 folders!
    The behaviour observed does not seem to hurt and the folders can be deleted, but in some applications (for instance Arperture) all these drive are shown as import folders, which is nasty if you have 81 idisks presented.
    It seems to me that it all relates to external hard drives. All local volumes have never shown these crazy sequence numbers
    The question is now why the systems behaves like this and how it can be avoided.
    Help is mostly appreciated. Thanks

    Thanks, Andreas for the explanation, which are helpful to get rid of those unwanted items.
    However the external firewire drive is always connected to the Mac pro - it is not a mobile device - it's purely for having the Time Machine on an external storage.
    And how should i avoid the behaviour with the idisk. The storage is a remote external device, where the connection is built through the Internet.
    Any additional ideas ?
    Thanks
    Michael

  • Issue with automatic numbering of figures in a Technical Document

    Hi everyone, thanks for taking the time to examine my issue. Basically I've inherited a Technical Document which was imported from Quark some years ago and badly cobbled together in IDesign by a novice and I'm bringing it up to standard to make it a bit more usable but do need to retain the conventions within it. It was written as a chaptered document so I've set up the 'chapters' as Sections in InDesign so as to allow for page number variables and a decent ToC etc. I'd like to have the diagram numbers (and associated x-references) automated too, but am floundering a bit with this.
    At the moment all the image captions are set in one paragraph style throughout the document, and I've been playing with the Bullets and Numbering Dialogue within this paragraph style. All the captions are part of the body text or in their own text frames (As opposed to being linked with image metadata or anything like that).
    The  manually written image number format in the document reads like 'Figure Chapter number, colon, Image number,  and then some have (a), (b), or (c). followed by the name)'  eg (worst case) Figure 8:5(c) Sealing the Blahblah Adaptor
    I realise I might have to set up a named list for each 'chapter' because I can't find a way to define the numbered list to show me;
    'Section number, dot, Image number (starting at one then continuing until the next section starts) dot and then if I need it an a, b, c. etc too'
    Not forgetting I have set up the written 'chapters' as Sections in Indesign.
    If I try adding the 'section symbol' to the number field in the bullets and numbering dialogue (inside my paragraph style)  I just get a weird little blue shape that presumably starts a new section rather than identifies the section I've put it in (so that isn't it) and if i try 'Chapter Number' from the number placeholder menu it only ever says '1' because InDesign only allows one 'chapter' per document (and my chapters are actually sections!).
    I do find the coding system for the 'insert special characters or numbered placeholder' really confusing - I'm not familiar with all of them, (and throwing circumflex's and hashtags in doesn't brighten my day) and since I don't know the codes trial and error seemed to be the way forward.  How are we supposed to know the codes - is there a list online somewhere?
    I could manually type the section number in the 'Number' text box in the dialogue (if I make a named list for each chapter) and lift a layer of confusion but surely there's a way to identify a section in a numbered/named list?
    I think I'm really close but it's driving me a bit crazy - I'm sure identifying levels within named lists might be something to do with it, but I can't see how to alter that. Do I need to set up a new paragraph style AND a new named list for each 'chapter' (section)? The alternative could be to split the document up and make a book file so the 'chapters' become real chapters? (I don't want to do this!)
    There's also something in RealWorld InDesign that worries me a bit - it says (even if I had it working the way I want) that it might number unthreaded text frames in the order they were created rather than the order they appear on the page? Um...
    The other thing is I do have a mixture of inline and anchored objects throughout this document so that might mess things up too?! *Sigh!*
    I'm using InDesign 5.5. for Windows. Many thanks for any tips! Hope somone out there is less confused than me!
    kind regards
    Phil

    You're so right!!!
    I really liked the idea of writing a book in pages. Have to write a second edition of something and did not want to use Word2008 on the Mac, because after one year it is still an unstable beast (crashes, crashes).
    So I checked ot Pages 09 - and alas
    * no xreferences
    * no automatic numbering of captions, figures, ...
    Then I asked my publisher for FrameMaker: The answer was: NO longer on the Mac since 2005. I can't believe this. Not a single decent program to write a book on a Mac.
    I don't want to go back to LaTex after 20 years - HELP me somebody
    and show me a few (automatic) workarounds how to play the automatic numbering and Xref tricks in pages.
    Otherwise it's really neat - BUT - nut for writing documents longer than 20 - 30 pages that need off that book like stuff.

  • JBoss Clustering | Issue with sequence generator

    Hi all,
    I am facing a strange issue. I have 2 instances of jboss on the same machine and we have a number of stateless session beans used in our application. Now, I have written a Stateless session bean for sequence generator. I am able to run it on one instance but it is failing on another instance (even if I am only this running this one instance).
    It gives the following error:
    com.proximities.common.utils.SequenceIdGeneratorUtil: Method: getSequence(): Message: TableKey : VENUE
    2005-08-02 11:19:58,406 DEBUG [com.proximities] Class: utils.SequenceIdGeneratorUtil: Method: getSequence(): Message: Fetching from sequence proxy factory: VENUE
    2005-08-02 11:19:58,406 DEBUG [com.proximities] Class: ejb.EJBLookupUtil: Method: getInitialContext: Message: Using JNDI initial context: org.jnp.interfaces.NamingContextFactory
    2005-08-02 11:19:58,406 DEBUG [com.proximities] Class: ejb.EJBLookupUtil: Method: getInitialContext: Message: Using JNDI URL: jnp://localhost:11099
    2005-08-02 11:19:58,406 DEBUG [com.proximities] Class: ejb.EJBLookupUtil: Method: getInitialContext: Message: Using JNDI initial context prefix: org.jboss.naming:org.jnp.interfaces
    2005-08-02 11:19:58,421 DEBUG [com.proximities] Class: ejb.EJBLookupUtil: Method: getSequenceFacade: Message: SequenceStoreFacadeHome - Sequence store facade home returned from ejbHomeFactory isnull
    2005-08-02 11:19:58,421 FATAL [com.proximities] Class: ejb.EJBLookupUtil: Method: getSequenceFacade: Message: Exception during the invoking the remote interface
    2005-08-02 11:19:58,421 INFO [STDOUT] java.lang.NullPointerException
    2005-08-02 11:19:58,421 INFO [STDOUT] ejb.EJBLookupUtil.getSequenceFacade(Unknown Source)
    2005-08-02 11:19:58,421 INFO [STDOUT] sequence.SequenceProxyFactory.getSequenceStore(Unknown Source)
    2005-08-02 11:19:58,421 INFO [STDOUT] sequence.SequenceProxyFactory.reserveBlock(Unknown Source)
    2005-08-02 11:19:58,421 INFO [STDOUT] sequence.SequenceProxyFactory.<init>(Unknown Source)
    2005-08-02 11:19:58,421 INFO [STDOUT] sequence.SequenceProxyFactory.getSequence(Unknown Source)
    2005-08-02 11:19:58,421 INFO [STDOUT] at common.utils.SequenceIdGeneratorUtil.getSequence(Unknown Source)
    2005-08-02 11:19:58,421 INFO [STDOUT] at dataaccess.VenueDAO.add(Unknown Source)
    2005-08-02 11:19:58,421 INFO [STDOUT] at dataaccess.VenueDAO.update(Unknown Source)
    2005-08-02 11:19:58,421 INFO [STDOUT] at dataaccess.common.GenericDataAccessManager.executeModify(Unknown Source)
    2005-08-02 11:19:58,421 INFO [STDOUT] at business.mediator.ManageVenueMediator.insertIntoVenues(Unknown Source)
    2005-08-02 11:19:58,421 INFO [STDOUT] at business.sessionfacade.VenueManagementFacadeEJBean.insertIntoVenues(Unknown Source)
    2005-08-02 11:19:58,421 INFO [STDOUT] at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
    2005-08-02 11:19:58,421 INFO [STDOUT] at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
    2005-08-02 11:19:58,421 INFO [STDOUT] at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
    2005-08-02 11:19:58,421 INFO [STDOUT] at java.lang.reflect.Method.invoke(Method.java:585)
    2005-08-02 11:19:58,421 INFO [STDOUT] at org.jboss.invocation.Invocation.performCall(Invocation.java:345)
    2005-08-02 11:19:58,421 INFO [STDOUT] at org.jboss.ejb.StatelessSessionContainer$ContainerInterceptor.invoke(StatelessSessionContainer.java:214)
    2005-08-02 11:19:58,421 INFO [STDOUT] at org.jboss.resource.connectionmanager.CachedConnectionInterceptor.invoke(CachedConnectionInterceptor.java:185)
    2005-08-02 11:19:58,421 INFO [STDOUT] at org.jboss.ejb.plugins.StatelessSessionInstanceInterceptor.invoke(StatelessSessionInstanceInterceptor.java:130)
    2005-08-02 11:19:58,421 INFO [STDOUT] at org.jboss.webservice.server.ServiceEndpointInterceptor.invoke(ServiceEndpointInterceptor.java:51)
    2005-08-02 11:19:58,421 INFO [STDOUT] at org.jboss.ejb.plugins.CallValidationInterceptor.invoke(CallValidationInterceptor.java:48)
    2005-08-02 11:19:58,421 INFO [STDOUT] at org.jboss.ejb.plugins.AbstractTxInterceptor.invokeNext(AbstractTxInterceptor.java:105)
    2005-08-02 11:19:58,421 INFO [STDOUT] at org.jboss.ejb.plugins.TxInterceptorCMT.runWithTransactions(TxInterceptorCMT.java:335)
    2005-08-02 11:19:58,421 INFO [STDOUT] at org.jboss.ejb.plugins.TxInterceptorCMT.invoke(TxInterceptorCMT.java:166)
    2005-08-02 11:19:58,421 INFO [STDOUT] at org.jboss.ejb.plugins.SecurityInterceptor.invoke(SecurityInterceptor.java:139)
    2005-08-02 11:19:58,421 INFO [STDOUT] at org.jboss.ejb.plugins.LogInterceptor.invoke(LogInterceptor.java:192)
    2005-08-02 11:19:58,421 INFO [STDOUT] at org.jboss.ejb.plugins.CleanShutdownInterceptor.invoke(CleanShutdownInterceptor.java:264)
    2005-08-02 11:19:58,421 INFO [STDOUT] at org.jboss.ejb.plugins.ProxyFactoryFinderInterceptor.invoke(ProxyFactoryFinderInterceptor.java:122)
    2005-08-02 11:19:58,421 INFO [STDOUT] at org.jboss.ejb.SessionContainer.internalInvoke(SessionContainer.java:624)
    2005-08-02 11:19:58,421 INFO [STDOUT] at org.jboss.ejb.Container.invoke(Container.java:873)
    2005-08-02 11:19:58,421 INFO [STDOUT] at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
    2005-08-02 11:19:58,421 INFO [STDOUT] at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
    2005-08-02 11:19:58,421 INFO [STDOUT] at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
    2005-08-02 11:19:58,421 INFO [STDOUT] at java.lang.reflect.Method.invoke(Method.java:585)
    2005-08-02 11:19:58,421 INFO [STDOUT] at org.jboss.mx.interceptor.ReflectedDispatcher.invoke(ReflectedDispatcher.java:141)
    2005-08-02 11:19:58,421 INFO [STDOUT] at org.jboss.mx.server.Invocation.dispatch(Invocation.java:80)
    2005-08-02 11:19:58,421 INFO [STDOUT] at org.jboss.mx.server.Invocation.invoke(Invocation.java:72)
    2005-08-02 11:19:58,421 INFO [STDOUT] at org.jboss.mx.server.AbstractMBeanInvoker.invoke(AbstractMBeanInvoker.java:249)
    2005-08-02 11:19:58,421 INFO [STDOUT] at org.jboss.mx.server.MBeanServerImpl.invoke(MBeanServerImpl.java:644)
    2005-08-02 11:19:58,421 INFO [STDOUT] at org.jboss.invocation.local.LocalInvoker$MBeanServerAction.invoke(LocalInvoker.java:155)
    2005-08-02 11:19:58,421 INFO [STDOUT] at org.jboss.invocation.local.LocalInvoker.invoke(LocalInvoker.java:104)
    2005-08-02 11:19:58,421 INFO [STDOUT] at org.jboss.invocation.InvokerInterceptor.invokeLocal(InvokerInterceptor.java:179)
    2005-08-02 11:19:58,421 INFO [STDOUT] at org.jboss.invocation.InvokerInterceptor.invoke(InvokerInterceptor.java:165)
    2005-08-02 11:19:58,421 INFO [STDOUT] at org.jboss.proxy.TransactionInterceptor.invoke(TransactionInterceptor.java:46)
    2005-08-02 11:19:58,421 INFO [STDOUT] at org.jboss.proxy.SecurityInterceptor.invoke(SecurityInterceptor.java:55)
    2005-08-02 11:19:58,421 INFO [STDOUT] at org.jboss.proxy.ejb.StatelessSessionInterceptor.invoke(StatelessSessionInterceptor.java:97)
    2005-08-02 11:19:58,421 INFO [STDOUT] at org.jboss.proxy.ClientContainer.invoke(ClientContainer.java:86)
    2005-08-02 11:19:58,421 INFO [STDOUT] at $Proxy92.insertIntoVenues(Unknown Source)
    Now within the server logs, I can see that it has loaded and cached the home interface of that bean, but dont know why its not picking it up.
    Here are the logs for the same:
    [org.jboss.ejb.EjbModule] startService, starting container: SequenceStoreFacade
    [org.jboss.system.ServiceController] starting service jboss.j2ee:jndiName=ejb.SequenceStoreFacadeHome,service=EJB
    [org.jboss.ejb.StatelessSessionContainer] Starting jboss.j2ee:jndiName=ejb.SequenceStoreFacadeHome,service=EJB
    [org.jboss.ejb.StatelessSessionContainer] Begin java:comp/env for EJB: SequenceStoreFacade
    [org.jboss.ejb.StatelessSessionContainer] TCL: org.jboss.util.loading.DelegatingClassLoader@188d92e
    [org.jboss.ejb.StatelessSessionContainer] Bound java:comp/ORB for EJB: SequenceStoreFacade
    [org.jboss.ejb.StatelessSessionContainer] Bound java:comp:/HandleDelegate for EJB: SequenceStoreFacade
    [org.jboss.ejb.StatelessSessionContainer] End java:comp/env for EJB: SequenceStoreFacade
    [org.jboss.ejb.plugins.local.BaseLocalProxyFactory] SequenceStoreFacade cannot be Bound, doesn't have local and local home interfaces
    [org.jboss.proxy.ejb.ProxyFactory] (re-)Binding Home ejb.SequenceStoreFacadeHome
    [org.jboss.proxy.ejb.ProxyFactory] Bound SequenceStoreFacade to ejb.SequenceStoreFacadeHome
    [org.jboss.system.ServiceController] starting service jboss.j2ee:service=EJB,plugin=pool,jndiName=ejb.SequenceStoreFacadeHome
    [org.jboss.ejb.plugins.StatelessSessionInstancePool] Starting jboss.j2ee:service=EJB,plugin=pool,jndiName=ejb.SequenceStoreFacadeHome
    [org.jboss.ejb.plugins.StatelessSessionInstancePool] Started jboss.j2ee:service=EJB,plugin=pool,jndiName=ejb.SequenceStoreFacadeHome
    [org.jboss.system.ServiceController] Starting dependent components for: jboss.j2ee:service=EJB,plugin=pool,jndiName=ejb.SequenceStoreFacadeHome dependent components: []
    [org.jboss.resource.connectionmanager.CachedConnectionInterceptor] start called in CachedConnectionInterceptor
    [org.jboss.ejb.StatelessSessionContainer] Started jboss.j2ee:jndiName=ejb.SequenceStoreFacadeHome,service=EJB
    [org.jboss.system.ServiceController] Starting dependent components for: jboss.j2ee:jndiName=ejb.SequenceStoreFacadeHome,service=EJB dependent components: []
    BTW, I am using JCS for caching and JBoss 4.0. Any pointers will be most appreciated?
    Thanks,
    Vikrant Verma

    You'll get a lot more help with this by posting this to the JBoss forums. This forum is about the J2EE SDK which uses the Sun Java System Application Server.
    -Ian Evans

  • Issue with Week Numbering !!!

    Hey All,
    I have an query regarding the week numbering. I need to generate a report . The Spec is as follows :
    There are certain number of employees in a project with their work start date and end date with regards to the project (project assigment column). I would want to create a project report of all the employees who worked in that particular project between the weeks that i want.
    Example i want to know the employees who worked in this project between the weeks 46 and 52. The input parameter is start week (just the number between 1 to 53) and the end week parameter is calculated as plus 6 weeks of the start week .
    It is kinda urgent issue for me.
    Plz help me ressolve the issue.
    Thank You All.
    SST.

    you can try something like this.
    SQL> create table t
      2  as
      3  select to_date('01-01-2008','dd-mm-yyyy')+(level-1) dt
      4    from dual
      5  connect by level <= 365
      6  /
    Table created.
    SQL> var week number
    SQL> exec :week := 42
    PL/SQL procedure successfully completed.
    SQL> select *
      2    from t
      3   where to_char(dt,'ww') = :week
      4  /
    DT
    14-OCT-08
    15-OCT-08
    16-OCT-08
    17-OCT-08
    18-OCT-08
    19-OCT-08
    20-OCT-08
    7 rows selected.
    SQL> select *
      2    from t
      3   where to_char(dt,'ww') between :week and :week+6
      4  /
    DT
    14-OCT-08
    15-OCT-08
    16-OCT-08
    17-OCT-08
    18-OCT-08
    19-OCT-08
    20-OCT-08
    21-OCT-08
    22-OCT-08
    23-OCT-08
    24-OCT-08
    DT
    25-OCT-08
    26-OCT-08
    27-OCT-08
    28-OCT-08
    29-OCT-08
    30-OCT-08
    31-OCT-08
    01-NOV-08
    02-NOV-08
    03-NOV-08
    04-NOV-08
    DT
    05-NOV-08
    06-NOV-08
    07-NOV-08
    08-NOV-08
    09-NOV-08
    10-NOV-08
    11-NOV-08
    12-NOV-08
    13-NOV-08
    14-NOV-08
    15-NOV-08
    DT
    16-NOV-08
    17-NOV-08
    18-NOV-08
    19-NOV-08
    20-NOV-08
    21-NOV-08
    22-NOV-08
    23-NOV-08
    24-NOV-08
    25-NOV-08
    26-NOV-08
    DT
    27-NOV-08
    28-NOV-08
    29-NOV-08
    30-NOV-08
    01-DEC-08
    49 rows selected.

  • I have Creative Cloud at work and we're having an issue with serial numbers.

    Adobe's website says when you download and install one of their CC programs, say Acrobat for example, you receive an email with the serial number and Adobe registers the serial to your account.  I have downloaded several of the products and have been using them for a year now but there are no registered products or serial numbers showing under our account.  We have a license for two users but my boss's access isn't working and is now asking for a serial number.  Anyone know what we need to do?

    Ask for serial number http://helpx.adobe.com/creative-cloud/kb/ccm-prompt-serial-number.html
    Does your Cloud subscription properly show on your account page?
    If you have more than one email, are you sure you are using the correct Adobe ID?
    https://www.adobe.com/account.html for subscriptions on your Adobe page
    If yes
    Some general information for a Cloud subscription
    Log out of your Cloud account... Restart your computer... Log in to your paid Cloud account
    -Sign in help http://helpx.adobe.com/x-productkb/policy-pricing/account-password-sign-faq.html
    -http://helpx.adobe.com/creative-cloud/kb/sign-in-out-creative-cloud-desktop-app.html
    -http://helpx.adobe.com/x-productkb/policy-pricing/activation-network-issues.html
    -http://helpx.adobe.com/creative-suite/kb/trial--1-launch.html
    If no
    This is an open forum, not Adobe support... you need Adobe staff to help
    Adobe contact information - http://helpx.adobe.com/contact.html
    -Select your product and what you need help with
    -Click on the blue box "Still need help? Contact us"

  • Having some major issues with track numbers in the newest iTunes

    I just recently went out and bought some new albums today for my birthday which was over the weekend and I ripped them to my computer, but when I go to put them into iTunes their track numbers are wrong. So as normal I went to change them, but found that when I click in the track number box I cannot input any numbers what so ever. I went and checked to see if the file was a read only file and it wasn't and I don't have any restrictions on this laptop so I'm not sure of what to do. Before I updated to 10.6.1 I was able to change anything and everything in the get info tab now I can only change the track name, album name, and artist. Any ideas?

    If you can click in the track number box, but get no numbers to appear, then I'd suspect you've got shift lock or num lock in the wrong position. If the box is greyed out, or you can enter new details but they are not saved, then I'd be looking for a permissions issue.
    tt2

  • Has anyone had issues with Serial Numbers being revoked?

    I have just bought a brand new "Mac Mini Server" and along with that purchased "Adobe CS6 Design Standard" software.  It is NOT an upgrade but rather a fresh install.  When I inserted the disk and entered the Serial Number from the box an error message came up saying the "serial number you entered has been revoked.  After some research, I tried to register it through Adobe and entered the SN.  Again I got, "the code you entered is invalid.  I contacted support, gave them the serial number.  They say that the code is invalid and not generated by Adobe, that the code must be a 24 digit number.  (The number is gave is a 24 digit number.)  Never the less, Adobe has instructed me to contact the seller for a serial number.
    My concern is this, the software was purchased through amazon.com and went to a third party supplier.  The supplier is well established, being in business for years, with very high review rates.  The software that I got appears to be good.  It has an Adobe UPC code label complete with an adobe hologram imprint within the label and PN number.  The seals on the package are original and does not appear to have been tampered with.  The serial number is on an inside package and could not be seen unless it was opened. 
    Sorry for the long story but just wanted to know if anyone else had issues like this to prepare myself for a possible battle.  Thanks for any help you can be.

    People that look for help in these forums rarely make return appearances to try to help others - meaning it is unlikely anyone with first-hand experience with your problem will be around to reply - but you never know.  You are probably better off going back to the vendor and seeing if there will be a battle to worry about or not.  If the vendor is as reliable as reviews would make them seem you should expect assistance as opposed to resistance.
    And don't be afraid to try contacting someone else in Adobe Support. Some folks are not as knowledgeable/helpful as others and can provide wrong information.

  • Issue with sequence

    Hi!
    I created a sequence:
    CREATE SEQUENCE "XXX"."FLIGHT_LEG_SEQ"
    MINVALUE 0 MAXVALUE 100000 INCREMENT BY 1 START WITH 1 CACHE 20 NOORDER CYCLE ;
    Sequence after inserting a row into table:
    CREATE SEQUENCE "XXX"."FLIGHT_LEG_SEQ"
    MINVALUE 0 MAXVALUE 100000 INCREMENT BY 1 START WITH 24 CACHE 20 NOORDER CYCLE ;
    Here is the trigger that uses this sequence:
    create or replace TRIGGER NEW_LEG_ID
    BEFORE INSERT ON FLIGHT_LEGS
    FOR EACH ROW
    BEGIN
    SELECT flight_leg_seq.NEXTVAL INTO :new.leg_id
    FROM dual;
    END;
    The sequence is set to increment by 1, however the next value is 24? What could be the reason for this?
    Thanks!

    > Let's don't waste each other's time with my first post.
    Correctly said. If you yourself are not sure about what you have typed, I should really retire from this thread. By the way, am not wasting your time, was trying to help you out. Oracle never does anything wrong. Its a computer program. So there should be something wrong with your code only.
    Cheers
    Sarma.

  • I have a editing issue with (sequence) rating system in Bridge.

    So I am editing in Bridge staring each keeper photo and as I do so the newly rated or 1 star photo I just  marked skips ahead in front of the  next photo. So in other words lets say I rated or stared photo number 1278 and the next one is 1279 and after marking 1278 it goes in front of 1279 reversing the sequence? What is causing this to happen. Also yesterday a whole batch of photos from a shoot (3500 of them) lost all time sequence ( I am viewing as "Date created" reverted to one time rather than when they were actually shot much later. I had two hardrives of the same photos and on my backup folder on the other hard drive this did not occur. Unfort I had edited almost the whole corrupted folder so going back to the clean back up HD was not what I wanted to do. Any ideas on this. the files that converted to the wrong date created also have a  out of focus quality as if the file is opening but never clears up.

    DOes tha make sense? Before you had me reset it I could
    scroll thru in bridge and use just single key grading actions  and now I must
    use command Action.
    Your Bridge set up must have been really messed because the normal behavior
    to set rate and label has always been with the two key combination when in a
    workspace with content window set up. When in content panel pressing a key
    without command brings you straight to the file (or first in series) with
    the first character that equals the key you pressed. If you have a filename
    starting with 3 pressing the key 3 for 3 star rating would move the focus
    from your selected file and bring you straight to that other file with a
    name starting with 3.
    However you could also use other options. Not only slideshow allows you to
    use one key, also the full screen (hit space bar to get there) or the Review
    mode (hit cmd+B to get there) in both mode you can move the files with arrow
    key and use one key for rate or label.
    two key  action such as COMMAND 1 to make it a 1 star or COMMAND 6 to make it
    this makes for allot more work and more carpal tunnel 
    nightmare lol!
    It is also not more work to hit one ore two keys at the same time and using
    the cmd + . (dot) and Cmd+ , (comma) also increases or decreases your rating
    with one star.
    Carpal tunnel syndrome is nothing to laugh about but highly unlikely to get
    from using a key board.
    There must be a fucntion to make thsi change?
    No, there is not.

Maybe you are looking for