Test if interval is set properly in DBMS_JOB .

Hi,
looking for a way to test interval setting in some complex cases .
Its obvious when You have
DBMS_JOB.SUBMIT (
        :jobno
      , 'p;'
      , TRUNC(sysdate)+11/24
      , 'TRUNC(SYSDATE+1)+11/24');but what if You want interval depend on day of week and hour in that day .
Like, in asktom example
create or replace view next_date
  2  as
  3  select case
  4         when (to_char( sysdate, 'hh24' ) between 6 and 17
  5                   and to_char(sysdate,'dy') NOT IN ('sat','sun') )
  6              then trunc(sysdate)+(trunc(to_char(sysdate,'sssss')/900)+1)*15/24/60
  7         when (to_char( sysdate, 'dy' ) not in ('fri','sat','sun') )
  8              then trunc(sysdate)+1+6/24
  9         else next_day( trunc(sysdate), 'Mon' )+6/24
10         end interval_date
11   from dual
12  /
View created.
ops$[email protected]>
ops$[email protected]> begin
  2     dbms_job.submit( :n,
  3                      'null;',
  4                      sysdate,
  5                     '(select * from next_date)'
  6                    );
  7  end;
  8  /How can I say , its Saturday 11 o'clock , show me what I'll get from interval .
Regards
GregG

GregG wrote:
How can I say , its Saturday 11 o'clock , show me what I'll get from interval .Create parameterized test view:
SQL> create or replace
  2    view next_date_test
  3      as
  4        with t as (
  5                   select  to_date(sys_context('userenv','client_info'),'mm/dd/yyyy hh24:mi:ss') dt from dual
  6                  )
  7        select case
  8                 when (to_char(dt,'hh24') between 6 and 17 and to_char(dt,'dy') NOT IN ('sat','sun'))
  9                   then trunc(dt)+(trunc(to_char(dt,'sssss')/900)+1)*15/24/60
10                 when (to_char(dt,'dy' ) not in ('fri','sat','sun'))
11                   then trunc(dt)+1+6/24
12                 else next_day(trunc(dt),'Mon')+6/24
13               end interval_date
14         from  t
15  /
View created.
SQL> exec dbms_application_info.set_client_info('11/24/2012 11:00:00');
PL/SQL procedure successfully completed.
SQL> alter session set nls_date_format = 'mm/dd/yyyy hh24:mi:ss'
  2  /
Session altered.
SQL> select  *
  2    from  next_date_test
  3  /
INTERVAL_DATE
11/26/2012 06:00:00
SQL> So if it iss Saturday 11 o'clock next date will be Monday 6 am.
SY.

Similar Messages

  • HT5012 I am having difficulty XMIT/REC text messages to family members using Android phones?  I have a 3GB data plan and all switches and buttons are set properly.  Any suggestions?

    I am having difficulty XMIT/REC text messages to family members using Android phones?  I have a 3GB data plan and all switches and buttons are set properly.  Any suggestions?

        Hello APVzW, we absolutely want the best path to resolution. My apologies for multiple attempts of replacing the device. We'd like to verify the order information and see if we can locate the tracking number. Please send a direct message with the order number so we can dive deeper. Here's steps to send a direct message: http://vz.to/1b8XnPy We look forward to hearing from you soon.
    WiltonA_VZW
    VZW Support
    Follow us on twitter @VZWSupport

  • [svn] 3526: The call to the TestNG task in the configuration test framework had haltOnFailure set to true which is not what we want .

    Revision: 3526
    Author: [email protected]
    Date: 2008-10-08 14:21:40 -0700 (Wed, 08 Oct 2008)
    Log Message:
    The call to the TestNG task in the configuration test framework had haltOnFailure set to true which is not what we want. Failures will get logged to the database at which point we can review them.
    Also fix a failing test.
    Modified Paths:
    blazeds/trunk/qa/apps/qa-regress/testsuites/config/build.xml
    blazeds/trunk/qa/apps/qa-regress/testsuites/config/tests/messagingService/jms/NoJNDINameT est/error.txt
    blazeds/trunk/qa/apps/qa-regress/testsuites/config/tests/messagingService/jms/NoJNDINameT est/services-config.xml

    I have a standard Ant build script for signing a jar file. I import it into my master Ant build files with
    <import file="Sign.xml"/>
    and then in my master Ant script I setup the name of the jar file e.g.
    <property name="jar-file" value="${fun}/FunApplet.jar"/>
    and then invoke a target
    <target name="sign-jar" depends="jar, sign">
    </target>
    Since this target (sign-jar) depends on target 'jar' and target 'sign' it executes the 'jar' target and then the 'sign' target that is contained in Sign.xml.

  • My ipod keeps searching for network, even when the network info is all set properly. It has suddenly started doing this. Also, buffering forever...

    My ipod keeps searching for network, even when the network info is all set properly. It has suddenly started doing this. Also, buffering forever... I have tried to reset the network few times, but not working.

    Hello Nazer_502,
    I would be concerned too if my iPhone was acting this way.  It sounds like it is overheating and not holding a charge. I recommend following the steps listed below when experiencing an issue like this:
    Battery life seems short
    Click ( www.apple.com/batteries/iphone.html) for tips on how to prolong iPhone's battery life.
    Try turning iPhone off and then on again.
    Connect iPhone to iTunes and restore iPhone.
    If the screen shows a low-battery image, the battery is low on power and needs to charge for up to ten minutes before you can use it.
    When charging iPhone, make sure to leave it charging until it is fully charged. You'll know the battery is fully charged when the battery icon in the upper-right corner of the screen looks like this .
    Note: When charging using a computer, don't connect iPhone to a keyboard. Also, the computer must be turned on and not in sleep or standby mode. If iPhone is connected to a computer that's not turned on or is in sleep or standby mode, the iPhone battery may drain.
    You can find the full article here:
    iPhone: Hardware troubleshooting
    http://support.apple.com/kb/ts2802
    Thank you for using Apple Support Communities.
    Best,
    Sheila M.

  • DataGrid column width is not set properly

    Hi,
            In the below example I has called the OptimizeDataGrid method on Button Click event to resize the Column according to the data. First time of the button click event it called the function whereas the Datagrid Column width alone is not set properly.whereas on second time it is working properly.
    For Eg : In the below statement the text value is coming as 55 and widthPadding is comes as 25. but the sum of these two value is not in the dg.columns[col].width.
    dg.columns[col].width = text + widthPadding;
    But the same is working on the second time of the Button click event. is any help me out to resovle this issue. Thanks in Advance.
    <?xml version="1.0"?>
    <mx:Application xmlns:mx="http://www.adobe.com/2006/mxml"
        width="100%" height="100%" >
        <mx:Script>
            <![CDATA[
                import mx.utils.ObjectUtil;
                import mx.collections.ArrayCollection;
                import mx.core.UITextField;
                import mx.events.AdvancedDataGridEvent;
                import mx.binding.utils.BindingUtils;
                import mx.controls.Alert;           
                import mx.controls.AdvancedDataGrid;
                import mx.controls.advancedDataGridClasses.*;
                import mx.controls.DataGrid;
                import mx.controls.dataGridClasses.*;
                [Bindable]
                private var dpFlat:ArrayCollection = new ArrayCollection([            
                  {Region:"aabbCC", Territory:"Central Californiaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa",
                      Territory_Rep:"Joe Smith", Actual:29134, Estimate:30000}, 
                  {Region:"AAbbcc", Territory:"Nevada",
                      Territory_Rep:"Bethany Pittman", Actual:52888, Estimate:45000}
                private function optimizeDataGrid(dg:Object,widthPadding:uint = 0,heightPadding:uint = 0):void
                    if ((!dg is DataGrid))
                        return;
                    var col:uint;
                    var colWidth:uint;
                    var tf:TextFormat;
                    var renderer:UITextField;
                    var widths:Array = new Array(dg.columnCount);
                    var height:uint = 0;
                    var dgCol:Object;
                    var text:uint = 0;
                    if (dg.columnCount > 0 && dg.dataProvider != null)
                        for (col = 0; col < dg.columnCount; ++col)
                            widths[col] = 0;
                        for each (var item:Object in dg.dataProvider)
                            for (col = 0; col < dg.columnCount; ++col)
                                renderer = new DataGridItemRenderer();
                                dg.addChild(renderer);
                                dgCol = dg.columns[col];
                                renderer.text = dgCol.itemToLabel(item);
                                widths[col] = Math.max(renderer.measuredWidth, widths[col]);
                                height = Math.max(renderer.measuredHeight, height);
                                dg.removeChild(renderer);
                        for (col = 0; col < dg.columnCount; ++col)
                            dg.addChild(renderer);
                            renderer.text = dg.columns[col].headerText;
                            widths[col] = Math.max(renderer.measuredWidth,widths[col]);
                            dg.removeChild(renderer);
                            text = widths[col];
                            dg.columns[col].width = text + widthPadding;
                        if (height != 0)
                            dg.rowHeight = height + heightPadding;
            ]]>
        </mx:Script>
        <mx:DataGrid id="myADG"
               dataProvider="{dpFlat}" rowCount="{dpFlat.length}" sortableColumns="false">       
                 <mx:columns>
                    <mx:DataGridColumn dataField="Region" />              
                    <mx:DataGridColumn dataField="Territory_Rep" headerText="Territory Rep" />
                     <mx:DataGridColumn dataField="Territory" />
                    <mx:DataGridColumn dataField="Actual" />
                    <mx:DataGridColumn dataField="Estimate" />
                </mx:columns>
       </mx:DataGrid>
       <mx:Button label="click" id="click" click="optimizeDataGrid(myADG,25,5);"/>
    </mx:Application>
    Regards
    Harikumar

    With horizontalScrollPolicy="off" (the default), it is hard to control
    column widths because the columns are sometimes overridden to make sure they
    fit on the screen.

  • NLS_LANG not set properly for printing

    Dear all,
    Am setting up pasta for printing using note : How to Setup Pasta Quickly and Effectively (Doc ID 356501.1) 12.0.4 on solaris 10
    a)    Verify the instance’s character set and ensure that the “ICX: Client IANA Encoding” and the “FND: NATIVE CLIENT ENCODING” profiles match the instance’s character set.
    select value from nls_database_parameters
    where parameter = 'NLS_CHARACTERSET';
    AR8MSWIN1256
    b)    Verify that the “Tk2Motif*fontMapCs” parameter within the file Tk2Motif.rgb or Tk2Motif_UTF8.rgb (for UTF8 instances) specifies the correct character set.
    EBS Release 12
    grep MapC $ORACLE_HOME/guicommon/tk/admin/Tk2Motif.rgb
    bash-3.00$ grep MapC $ORACLE_HOME/guicommon/tk/admin/Tk2Motif.rgb
    !Tk2Motif*fontMapCs: iso8859-2=EE8ISO8859P2
    !Tk2Motif*fontMapCs: iso8859-15=WE8ISO8859P15
    c)    Verify that the NLS_LANG within the Apps listener shows the correct character set.
    grep envs $TNS_ADMIN/listener.ora
    bash-3.00$ grep envs $TNS_ADMIN/listener.ora
                     ( envs='MYAPPSORA=/sets/backup/mar20/appl/MAR19/apps/apps_st/appl/APPSMAR19_setshapps01.env,PATH=/usr/bin:/usr/ccs/bin:/bin,FNDSM_SCRIPT=/sets/backup/mar20/appl/MAR19/inst/apps/MAR19_setshapps01/admin/scripts/gsmstart.sh' )
                     ( envs='EPC_DISABLED=TRUE,NLS_LANG=American_America.AL32UTF8,LD_LIBRARY_PATH=/sets/backup/mar20/appl/MAR19/apps/tech_st/10.1.2/lib32:/sets/backup/mar20/appl/MAR19/apps/tech_st/10.1.2/lib:/usr/dt/lib:/usr/openwin/lib:/sets/backup/mar20/appl/MAR19/apps/tech_st/10.1.2/jdk/jre/lib/sparc:/sets/backup/mar20/appl/MAR19/apps/tech_st/10.1.2/jdk/jre/lib/sparc/native_threads,SHLIB_PATH=/sets/backup/mar20/appl/MAR19/apps/tech_st/10.1.2/lib32:/sets/backup/mar20/appl/MAR19/apps/tech_st/10.1.2/lib:/usr/dt/lib:/usr/openwin/lib:/sets/backup/mar20/appl/MAR19/apps/tech_st/10.1.2/jdk/jre/lib/sparc:/sets/backup/mar20/appl/MAR19/apps/tech_st/10.1.2/jdk/jre/lib/sparc/native_threads,LIBPATH=/sets/backup/mar20/appl/MAR19/apps/tech_st/10.1.2/lib32:/sets/backup/mar20/appl/MAR19/apps/tech_st/10.1.2/lib:/usr/dt/lib:/usr/openwin/lib:/sets/backup/mar20/appl/MAR19/apps/tech_st/10.1.2/jdk/jre/lib/sparc:/sets/backup/mar20/appl/MAR19/apps/tech_st/10.1.2/jdk/jre/lib/sparc/native_threads,APPLFSTT=MAR19,APPLFSWD=/sets/backup/mar20/appl/MAR19/inst/apps/MAR19_setshapps01/appl/admin;/sets/backup/mar20/appl/MAR19/inst/apps/MAR19_setshapps01/appltmp;/sets/backup/mar20/appl/MAR19/apps/apps_st/comn/webapps/oacore/html/oam/nonUix/launchMode/restricted' )The above doesn't reveal my character set properly. is this normal ?.. can I ignore this ?.If I have to change, how to change this ?
    Please advise
    Kai
    Edited by: KaiS on Mar 21, 2010 12:39 AM

    Kai,
    bash-3.00$ grep MapC $ORACLE_HOME/guicommon/tk/admin/Tk2Motif.rgb
    !Tk2Motif*fontMapCs: iso8859-2=EE8ISO8859P2
    !Tk2Motif*fontMapCs: iso8859-15=WE8ISO8859P15Change the above to:
    Tk2Motif*fontMapCs: iso8859-6=AR8MSWIN1256
    See (Note: 816879.1 - HOW TO CONFIGURE PASTA FOR ARABIC) for details.
    bash-3.00$ grep envs $TNS_ADMIN/listener.ora
    ( envs='MYAPPSORA=/sets/backup/mar20/appl/MAR19/apps/apps_st/appl/APPSMAR19_setshapps01.env,PATH=/usr/bin:/usr/ccs/bin:/bin,FNDSM_SCRIPT=/sets/backup/mar20/appl/MAR19/inst/apps/MAR19_setshapps01/admin/scripts/gsmstart.sh' )
    ( envs='EPC_DISABLED=TRUE,NLS_LANG=American_America.AL32UTF8,LD_LIBRARY_PATH=/sets/backup/mar20/appl/MAR19/apps/tech_st/10.1.2/lib32:/sets/backup/mar20/appl/MAR19/apps/tech_st/10.1.2/lib:/usr/dt/lib:/usr/openwin/lib:/sets/backup/mar20/appl/MAR19/apps/tech_st/10.1.2/jdk/jre/lib/sparc:/sets/backup/mar20/appl/MAR19/apps/tech_st/10.1.2/jdk/jre/lib/sparc/native_threads,SHLIB_PATH=/sets/backup/mar20/appl/MAR19/apps/tech_st/10.1.2/lib32:/sets/backup/mar20/appl/MAR19/apps/tech_st/10.1.2/lib:/usr/dt/lib:/usr/openwin/lib:/sets/backup/mar20/appl/MAR19/apps/tech_st/10.1.2/jdk/jre/lib/sparc:/sets/backup/mar20/appl/MAR19/apps/tech_st/10.1.2/jdk/jre/lib/sparc/native_threads,LIBPATH=/sets/backup/mar20/appl/MAR19/apps/tech_st/10.1.2/lib32:/sets/backup/mar20/appl/MAR19/apps/tech_st/10.1.2/lib:/usr/dt/lib:/usr/openwin/lib:/sets/backup/mar20/appl/MAR19/apps/tech_st/10.1.2/jdk/jre/lib/sparc:/sets/backup/mar20/appl/MAR19/apps/tech_st/10.1.2/jdk/jre/lib/sparc/native_threads,APPLFSTT=MAR19,APPLFSWD=/sets/backup/mar20/appl/MAR19/inst/apps/MAR19_setshapps01/appl/admin;/sets/backup/mar20/appl/MAR19/inst/apps/MAR19_setshapps01/appltmp;/sets/backup/mar20/appl/MAR19/apps/apps_st/comn/webapps/oacore/html/oam/nonUix/launchMode/restricted' )Change the "NLS_LANG=American_America.AL32UTF8" to "NLS_LANG=American_America.AR8MSWIN1256) -- You could also leave the same line as you should be able to print Arabic with "AL32UTF8".
    Once you are done, bounce all the application services (including the CM) and check then.
    Regards,
    Hussein

  • RTSP packet header information not set properly

    How does the QuickTime Streaming Server set the field "Owner/Creator, Session Id (o):" in the RTSP packet header.
    When analyzing the packets we get "Owner/Creator, Session Id (o): - 58 2721648327 IN IP4 127.0.0.0" which is not our Server's external IP.
    When trying to connect threw a stateful packet inspection firewall, we can't connect to our stream because of the field "o" not being set properly.

    Was there ever a solution to nagardd's original post? I am experiencing the same issue w/ the netmask not being set even though it's setup to do so in /etc/netmasks.
    My /etc/netmasks
    root@fsintntwrkrus1 cat /etc/netmasks
    # The netmasks file associates Internet Protocol (IP) address
    # masks with IP network numbers.
    # network-number netmask
    # The term network-number refers to a number obtained from the Internet Network
    # Information Center.
    # Both the network-number and the netmasks are specified in
    # "decimal dot" notation, e.g:
    # 128.32.0.0 255.255.255.0
    172.25.40.0 255.255.255.0
    *172.25.237.0 255.255.254.0*
    My ifconfig after boot
    root@fsintntwrkrus1 ifconfig -a
    lo0: flags=2001000849<UP,LOOPBACK,RUNNING,MULTICAST,IPv4,VIRTUAL> mtu 8232 index 1
    inet 127.0.0.1 netmask ff000000
    ipge0: flags=1000843<UP,BROADCAST,RUNNING,MULTICAST,IPv4> mtu 1500 index 2
    inet 172.25.40.10 netmask ffffff00 broadcast 172.25.40.255
    ether 0:14:4f:22:21:20
    ipge1: flags=1000843<UP,BROADCAST,RUNNING,MULTICAST,IPv4> mtu 1500 index 3
    inet 172.25.237.241 netmask ffff0000 broadcast 172.25.0.0
    ether 0:14:4f:22:21:21

  • Adclonectx.pl throwing classpath is not set properly error

    I recreated the appsutil folder on DB tier and now when I am running the below command to create the context file I am getting error.
    perl adclonectx.pl outfile=E:\R12\11.1.0\appsutil
    The above command is giving error, 'Please ensure that Classpath is set properly'
    Even though I have set the classpath to the below I am getting the error.
    SET CLASSPATH=E:\R12\11.1.0\jdbc\lib\ojdbc5.jar;E:\R12\11.1.0\appsutil\java\xmlparserv2.jar;E:\R12\11.1.0\appsutil\java;E:\R12\11.1.0\jlib\netcfg.jar;E:\R12\11.1.0\jlib\ldapjclnt11.jar
    SET PERL5LIB=E:\R12\11.1.0\perl\5.8.3\lib\MSWin32-X64-multi-thread;E:\R12\11.1.0\perl\5.8.3\lib;E:\R12\11.1.0\perl\site\5.8.3\lib\MSWin32-X64-ulti-thread;E:\R12\11.1.0\perl\site\5.8.3\lib;E:\R12\11.1.0\appsutil\perl

    Sami,
    Are you passing the template in the command as in (R12 adbldxml.pl AutoConfig Tool to Generate the Context File on the Database Tier [ID 1079053.1])?
    If this is a RAC-to-RAC cloning, please see (R12 RAC to RAC cloning fails with 'Please ensure that Classpath is set properly' [ID 966321.1]).
    Thanks,
    Hussein

  • Can I re-use a parameterized manual test case with different set of parameters in a different test plan?

    Can I re-use a parameterized manual test case with different set of parameters in a different test plan without impacting the parameters in the first test plan?

    Hi ssteele_1,
    Thank you for posting in MSDN forum.
    Generally, I know that if you want to re-use a parameterized manual test case and without impacting the parameters in the first test plan.
    I suggest you could try to right click this parameterized manual test case ->Select the Create copy and add to suite option like the following screen shot.
    Then the parameterized manual test case can be re-used as a new test case in this MTM and it will did not impact the original parameterized manual test case.
    Best Regards,
    We are trying to better understand customer views on social support experience, so your participation in this interview project would be greatly appreciated if you have time. Thanks for helping make community forums a great place.
    Click
    HERE to participate the survey.

  • My external speakers have stopped working. A circle with a line through it shows up when I try to adjust the volume.  I have been in system prefrences to check all the sound settings and everything is set properly.  What do I need to do to fix this. Help!

    My external speakers have stopped working. A circle with a line through it shows up when I try to adjust the volume.  I have been in system prefrences to check all the sound settings and everything is set properly.  What do I need to do to fix this. Help!

    Though I have doubts for success, you might try a SMC reset.  It can do no harm.  Otherwise, barring suggestions from others, the Apple Store or qualified repair facility is the last option.
    http://support.apple.com/kb/HT3964
    Ciao.

  • [Solved}Error: Unable to initialize gtk, is DISPLAY set properly?

    i am using aa software that require root access , but when i run it with root access is shows
    Error: Unable to initialize gtk, is DISPLAY set properly?
    I am using kde desktop , but when loginas root in kde and run that application it works fine.
    i have googled a lot on this but did not find any solution.
    Last edited by sanjuchopra (2012-01-19 10:59:39)

    You should NEVER login graphically as root. What software do you want to use? Is it REALLY necessary to give it root access=
    If you want to run it as root, you should do the following in a terminal:
    $ xhost +      enable X access from terminals
    $ su    login as root
    # /path/to/programname
    Or better yet if you use sudo.
    Better yet if you start the program with
    gksu <programname>
    This way you'll be asked for password and won't need a terminal.
    By the way, if the program requires gtk to be in your sistem, maybe you should check that they're installed, giving
    pacman -S gtk2
    Last edited by olorian (2012-01-16 18:34:39)

  • TS3899 I'm trying to reply to an email on my iPhone, but I get a message "the recipient was rejected by the server" What have I not set properly?

    I'm trying to reply to an email on my iPhone, but I get the message "the recipient was rejected by the server". What have I not set properly?

    Go to Settings > Mail, Contacts, Calendars > Your Account > Account Name , tap on SMTP (under the 'Outgoing Mail Server' heading) and then tap on your Primary Server and enter your email account and password. Make sure things are filled in properly.

  • DNS set properly?

    After all the issues I was having with the server, I decided to do a clean install. This time I have it set as a standalone server until I get the DNS set properly.
    Right now, the way I have my DNS configured is this:
    ^ 0.16.172.in-addr.arpa. - Reverse Zone
    - 172.16.0.100 - Reverse Mapping - server1.markhadjar.com.
    ^ markhadjar.com. - Primary Zone
    - server1 - Machine - 172.16.0.100
    - mail - Machine - 172.16.0.100
    - www - Machine - 172.16.0.100
    highlighting markhadjar.com. shows that my name servers are set as:
    Zone: markhadjar.com.
    Nameserver Hostname: server1.markhadjar.com.
    Is all this correct?
    Running checkip -checkhostname results in:
    Primary Address: 172.16.0.100
    Current Hostname: server1.markhadjar.com
    DNS HostName: server1.markhadjar.com
    The names match. There is nothing to change.
    Traceroute works when using server1.markhadjar.com and 172.16.0.100
    however, when I type in just the domain markhadjar.com it can't find anything. I have reason to believe this is why some of my services before were not working properly.
    Before doing the clean install, I was only able to get Mail and VPN to work. AB/iCal would not work. iChat would only work if I used [email protected] and having the server set to server1.markhadjar.com but it would not work with [email protected]
    Any help would be appreciated!
    THanks

    If you are trying to access your server from your local client machine you need to have the client looking to your server added to the DNS lookup path. Trying to access the server from outside is a whole different story.

  • [svn] 3527: + add test for message priority setting.

    Revision: 3527
    Author: [email protected]
    Date: 2008-10-08 15:49:57 -0700 (Wed, 08 Oct 2008)
    Log Message:
    + add test for message priority setting. This test sends 100 messages at priorities of different values set randomly. I store to original generated values in an array and loop over that array setting each new msg with that array indexes value. I also copy the generated value array to another array but one that is sorted
    sortedGeneratedPriorityValues = generatedPriorityValues.sort(Array.DESCENDING);
    later on we use this sorted list and compare them to the results of each message received by the consumer
    //get the message header from the message and store it.
    var result:String = e.message.headers["DSPriority"].toString();
    //assert we got the correct message for the channel being tested.
    var expected:String = sortedGeneratedPriorityValues[messageCounter].toString();
    Assert.assertEquals("Unexpected Priority: " + result, expected, result);
    Added Paths:
    blazeds/trunk/qa/apps/qa-regress/testsuites/mxunit/tests/messagingService/priority/multip leMessagesDescendingDegreePriorityTest.mxml

  • "Please ensure that Classpath is set properly" then run adclonectx.pl

    Hello,
    I am working on cloning Oracle Home. When running clone context to create context file on the target system:
    [oracle@cvlx10 bin]$ perl adclonectx.pl contextfile=/v01/vdev/11.1.0/vdev/appsutil/VPRD3_cvlx30.xml template=/v01/vdev/11.1.0/vdev/appsutil/template/adxdbctx.tmp pairsfile=/v01/vdev/11.1.0/vdev/appsutil/clone/pairsfile.txt
    and received this message
    Please ensure that Classpath is set properly
    I am new to cloning, can anyone give me some idea where to check this? Thanks a lot.

    Please post the details of the application release, database version and OS.
    I am working on cloning Oracle Home. When running clone context to create context file on the target system:
    [oracle@cvlx10 bin]$ perl adclonectx.pl contextfile=/v01/vdev/11.1.0/vdev/appsutil/VPRD3_cvlx30.xml template=/v01/vdev/11.1.0/vdev/appsutil/template/adxdbctx.tmp pairsfile=/v01/vdev/11.1.0/vdev/appsutil/clone/pairsfile.txt
    and received this message
    Please ensure that Classpath is set properlyWhat does "echo $CLASSPATH" return?
    I am new to cloning, can anyone give me some idea where to check this? Thanks a lot.Please make sure you follow all the steps in Rapid Clone doc -- Rapid Clone Documentation Resources For Release 11i and 12 [ID 799735.1]
    Thanks,
    Hussein

Maybe you are looking for

  • Java Won't Work As Domain User

    Hi guys and gals, Was just wondering if anyone else had seen something similar to this, I have JRE 6 Update 13 been deployed from the server (as I have at another school with no problems) however when I got to a webiste that uses a java applet as a d

  • Proper formatting for dimension properties in SQL script logic

    Hi all, I'm trying to pass the time member from a property in account dimension. (Post recognized revenue by looking at deferred revenue accounts.)  The dimension ACCTREV has a property called DATENAME.  DATENAME refers to a valid TIME member.  In 4.

  • Where to find M.A.T. in BIOS of a 875P Neo LSR?

    Hi y'all! Currently I'm using: P4 3.0GHz 800MHz FSB 2*512MB Kingston HyperX PC3200 CL2 MSI 875P Neo LSR (BIOS v1.6) I'm wondering where I can enable P.A.T. or MSI's M.A.T.? After reading something about BIOS version 1.6 enabling M.A.T. , I flashed fr

  • Regarding Main Windowin scripts

    Hi to all abap gurus   iam new to abap and my querry is as follows pls dont try to give the links . and i feel so  happy if u give exact anwers ? Querry1: i have one page( named "page1" )in my  script with three windows(logo,adress,main windows) my r

  • Best quality format to import into iMovie

    I am getting news footage sent to me on a disc to use in an iMovie project. They can send me the files in just about any format. What format should I ask for to provide the best quality video? Are there common formats that do not work with iMovie? Fi