Schema browser is missing the Scheduler

When using the Schema Browser view, the Scheduler doesn't show up in the list of objects. I need to switch back to the main 'Connections' view in order to get to the Scheduler option.
Is there a reason for that? Can that option be added to the dropdown list? This is missing from both 3 and 4.
thanks,
Steve

Hi Steve,
Each item that appears in the Schema Browser drop-down list of object types represents a container for a simple, flat list of instances of that type.  The Scheduler, on the other hand, is (at least) a two-level hierarchy where each item in the first level represents a container of a different type.  So, while almost anything is possible from a programming perspective, Schema Browser so far only includes types that fit this simple pattern.
You might trying logging a feature request on the SQL Developer Exchange:  http://sqldeveloper.oracle.com/
Regards,
Gary
SQL Developer Team

Similar Messages

  • Copying a table with the right-click menu in schema browser fails to copy comments when string has single quote(s) (ascii chr(39))

    Hi,
    I'm running 32-bit version of SQL Developer v. 3.2.20.09 build 09.87, and I used the built in context menu (right-clicking from the schema browser) today to copy a table.  However, none of the comments copied.  When I dug into the PL/SQL that the menu-item is using, I realized that it fails because it doesn't handle single quotes within the comment string.
    For example, I have a table named WE_ENROLL_SNAPSHOT that I wanted to copy as WE_ENROLL_SNAPSHOT_V1 (within same schema name)
    1. I right-clicked on the object in the schema browser and selected Table > Copy...
    2. In the pop-up Copy window, I entered the new table name "WE_ENROLL_SNAPSHOT_V1" and ticked the box for "Include Data" option.  -- The PL/SQL that the menu-command is using is in the "SQL" tab of this window.  This is what I extracted later for testing the issue after the comments did not copy.
    Result: Table and data copied as-expected, but no column or table comments existed.
    I examined the PL/SQL block that the pop-up window issued, and saw this:
    declare
      l_sql varchar2(32767);
      c_tab_comment varchar2(32767);
      procedure run(p_sql varchar2) as
      begin
         execute immediate p_sql;
      end;
    begin
    run('create table "BI_ETL".WE_ENROLL_SNAPSHOT_V1 as select * from "BI_ETL"."WE_ENROLL_SNAPSHOT" where '||11||' = 11');
    select comments into c_tab_comment from sys.all_TAB_comments where owner = 'BI_ETL' and table_name = 'WE_ENROLL_SNAPSHOT' and comments is not null;
    run('comment on table BI_ETL.WE_ENROLL_SNAPSHOT_V1 is '||''''||c_tab_comment||'''');
    for tc in (select column_name from sys.all_tab_cols where owner = 'BI_ETL' and table_name = 'WE_ENROLL_SNAPSHOT')
        loop
       for c in (select comments from sys.all_col_comments where owner = 'BI_ETL' and table_name = 'WE_ENROLL_SNAPSHOT' and column_name=tc.column_name)
       loop
       run ('comment on column BI_ETL.WE_ENROLL_SNAPSHOT_V1.'||tc.column_name||' is '||''''||c.comments||'''');
    end loop;
    end loop;
    EXCEPTION
      WHEN OTHERS THEN NULL;
    end;
    The string of the table comment on WE_ENROLL_SNAPSHOT is this:
    WBIG table of frozen, point-in-time snapshots of Enrolled Students by Category/term/pidm. "Category" is historically, and commonly, our CENSUS snapshot; but, can also describe other frequencies, or categorizations, such as: End-of-Term (EOT), etc. Note: Prior to this table existing, Census-snapshots were stored in SATURN.SNAPREG_ALL. All FALL and SPRING term records prior-to-and-including Spring 2013 ('201230') have been migrated into this table -- EXCEPT a few select prior to Fall 2004 (200410) records where there are duplicates on term/pidm. NO Summer snapshots existed in SNAPREG_ALL, but were queried and stored retroactively (including terms prior to Spring 2013) for the purpose of future on-going year-over-year analysis and comparison.
    Note the single quotes in the comment: ... ('201230')
    So, in the above PL/SQL line 11 grabs this string into "c_tab_comment", but then line 12 fails because of the single quotes.  It doesn't know how to end the string because the single quotes in the string are not "escaped", and this messes up the concatenation on line 12.  (So, then no other column comments are created either because the block throws an error, and goes to line 22 for the exception and exits.)
    When I modify the above PL/SQL as my own anonymous block like this, it is successful:
    declare
      c_tab_comment VARCHAR2(32767);
    begin
    SELECT REPLACE(comments,chr(39),chr(39)||chr(39)) INTO c_tab_comment FROM sys.all_TAB_comments WHERE owner = 'BI_ETL'   AND table_name = 'WE_ENROLL_SNAPSHOT'  AND comments IS NOT NULL;
    EXECUTE IMMEDIATE 'comment on table BI_ETL.WE_ENROLL_SNAPSHOT_V1 is '''||c_tab_comment||'''';
    for tc in (select column_name from sys.all_tab_cols where owner = 'BI_ETL' and table_name = 'WE_ENROLL_SNAPSHOT')
        loop
       for c in (select REPLACE(comments,chr(39),chr(39)||chr(39)) comments from sys.all_col_comments where owner = 'BI_ETL' and table_name = 'WE_ENROLL_SNAPSHOT' and column_name=tc.column_name)
       loop
       EXECUTE IMMEDIATE 'comment on column BI_ETL.WE_ENROLL_SNAPSHOT_V1.'||tc.column_name||' is '||''''||c.comments||'''';
    end loop;
    end loop;
    EXCEPTION
      WHEN OTHERS THEN NULL;
    end;
    On lines 4 and 8 I wrapped the "comments" from sys.all_tab_comments and sys.all_col_comments with a replace command finding every chr(39) and replacing with chr(39)||chr(39). (On line 8 I also had to alias the wrapped column as "comments" so line 10 would succeed.)
    Is this an issue with SQL Developer? Is there any chance that the menu-items can handle single quotes in comment strings? ... And, of course this makes me wonder which other context menu commands in the tool might have a similar issue.
    Thoughts?
    thanks//jacob

    PaigeT wrote:
    I know about quick drop, but it isn't helpful here. I want to be able to right click on a string or array wire, navigate to the string or array palette, and select the corresponding "Empty?" comparator. In this case, since I do actually know where those functions live, and I'm already using my mouse to right click on the wire, typing ctrl-space to open quick drop and then typing in the function name is actually more work than navigating to it in the palette. It would just be nice to have it on hand in the location I naturally go to look for it the first time. 
    I don't agree with this work flow.  Right hand on mouse, left hand on home keys.  Pressing CTRL + Space is done with the left hands, and then you could assign "ea" to "Empty Array" both of which is accessible with the left hand.  Darren posted a bunch of great shortcuts for the right handed developer.
    https://decibel.ni.com/content/docs/DOC-20453
    This is much faster than waiting for any right click menu navigation, even if it is found in the suggested subpalette.
    Unofficial Forum Rules and Guidelines - Hooovahh - LabVIEW Overlord
    If 10 out of 10 experts in any field say something is bad, you should probably take their opinion seriously.

  • Found 0 results for My browser is missing important items, the whole tool bar...., drop down menu to print, copy, work off line, file, save, book mark, history. I just installed latest foxfire on windows xp. Found some instructions but they called for usi

    Found 0 results for My browser is missing important items, the whole tool bar...., drop down menu to print, copy, work off line, file, save, book mark, history. I just installed latest foxfire on windows xp. Found some instructions but they called for using keys my computer doesn't have ( key in OSX There is no file, edit , history, help, tools, navigation, all the things your directions say to use. Also I always get hung up and the message a scrip is running. I don't know what thises scrips are but I sure don't need them.
    == This happened ==
    Every time Firefox opened
    == I just noticed it. It probably happened when I upgraded foxfire.

    <u>'''Can't see the Menu Bar'''</u> (File, Edit, View, History, Bookmarks, Tools, Help)?
    Turning the Menu Bar on and off is a new feature in version 3.6.
    ''(Linux & OSX see: [[Menu bar is missing]] )''
    <u>''Windows'' Method 1.</u> '''''Hold down''''' the key and press the following letters in this exact order: V T M
    <u>''Windows'' Method 2.</u> Press and release the key. The Menu Bar will be displayed; then choose ~~red:V~~iew > ~~red:T~~oolbars and click on ~~red:M~~enu Bar.
    The Menu Bar should now be displayed permanently, unless you turn it off again using View > Toolbars. Check mark = displayed, NO check mark = not displayed.
    See: http://support.mozilla.com/en-US/kb/Menu+bar+is+missing
    <u>'''Navigation Toolbar, Bookmarks Toolbar and other Toolbars'''</u> under View > Toolbars. Clicking on one of them will place a check mark (display) or remove the check mark (not displayed).
    <u>'''To display the Status Bar'''</u>, View, then click Status bar to place a check mark (display) or remove the check mark (not displayed).
    <u>'''Full Screen mode'''</u>
    http://kb.mozillazine.org/Netbooks#Full_screen
    Also see:
    ''' [[Back and forward or other toolbar buttons are missing]]'''
    '''[[Navigation Toolbar items]]'''

  • Missing chain step name in events raised by the scheduler

    I use events raised by the scheduler (SYS.SCHEDULER$_EVENT_QUEUE) to monitor scheduler chains processing.
    For event_type = "JOB_STARTED" (chain step started in case of chains) in event message (sys.scheduler$_event_info) there is no log_id (log_id is null).
    In user_scheduler_job_log view there is column job_subname that contains chain step name but this column is missing in the event message.
    Is there any way to get chain step name for event_type = "JOB_STARTED"?
    Job configuration:
    dbms_scheduler.set_attribute(
    name => job_name,
    attribute => 'logging_level',
    value => dbms_scheduler.logging_full
    dbms_scheduler.set_attribute(
    name => job_name,
    attribute => 'raise_events',
    value => dbms_scheduler.job_all_events
    Database:
    Oracle Database 10g Enterprise Edition Release 10.2.0.5.0 - 64bi
    OS:
    CentOS - redhat-4
    Regards
    Mariusz

    I want to track chain processing by dequeue messages from SCHEDULER$_EVENT_QUEUE.
    Examples of messages automatically inserted by scheduler into SCHEDULER$_EVENT_QUEUE (user_data column from SCHEDULER$_EVENT_QTAB)
    SYS.SCHEDULER$_EVENT_INFO('JOB_SUCCEEDED','CDWMAIN','JOB_NAME','2011-07-27 16:19:11.191969',0,NULL,0,340374,1,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL)
    SYS.SCHEDULER$_EVENT_INFO('JOB_STARTED','CDWMAIN','JOB_NAME','2011-07-27 16:19:10.947994',0,NULL,1,NULL,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL)
    SYS.SCHEDULER$_EVENT_INFO('JOB_CHAIN_STALLED','CDWMAIN','JOB_NAME','2011-07-27 15:45:13.727127',0,NULL,0,NULL,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL)
    For event JOB_SUCCEEDED there is log_id = 340374 so we can find job_subname (chain step name) in log table.
    For JOB_STARTED and JOB_CHAIN_STALLED there is no log_id so we do not know wich chain step in this case was started and wich chain was stalled.
    JOB_NAME is the same for all steps in case of chain processing

  • Option to use private browsing is missing in the dropdown list

    The option to use private browsing is missing in the dropdown listo I think this happened after I down loaded an app that was supposed to help me shutdown private browsing since I didnt know how to do it. I dont remember which app it was. But either way its gone now..

    Hi,
    Unfortunately Firefox doesn't have an option to open a private tab in the current regular window.
    You have to open a new private window for private browsing.
    You can read more here.
    https://support.mozilla.org/en-US/kb/private-browsing-browse-web-without-saving-info

  • SQL developer 3.1 in schema browser doesn't show package body

    Hi,
    When i search a package with schema browser, i can't see the package body of other owner, the menu "edit body" is disabled.
    My user as select any dictionary et select_catalog_role
    When i connect with a DBA's user, i can see all.
    I'am on windows with sqldev 3.1
    Thanks

    Hi erifet,
    This one seems to go back and forth. It was originally fixed in Schema Browser for 3.0. The "Edit Body" was greyed out, but an "Open Body" icon in the code editor toolbar for Package Spec was enabled. Here is the forum reference:
    30EA1 package bodies missing in schema browser still not fixed
    In 3.1, both "Edit Body" and "Open Body" are greyed out, and that applies both to Schema Browser and Connection Navigator for Other Users packages, so at least 3.1 is consistent. The difference between the Browser and the Navigator is Schema Browser has no option to display a Package Body type (must go through Package Spec type), while the Connection Navigator displays a Package Body node type in the tree beneath the Spec node. In the forum thread AM references, Vadim explains what 3.1 does: it uses the ALL_OBJECTS view, which apparently does not include package bodies. Off-hand I'm not sure why it does not include them, and the following link doesn't shed any light:
    http://docs.oracle.com/cd/B19306_01/server.102/b14237/statviews_1001.htm
    Adding the execute privilege on the package does not help either. At least you have the workaround of using the Connection navigator to view the package body metadata (code) of Other Users if you have been granted either SELECT_CATALOG_ROLE or SELECT ANY DICTIONARY. As for returning to the 3.0 Schema Browser behavior, perhaps Vadim will notice your post and have some explanation as to why or why not that may be possible.
    Regards,
    Gary
    SQL Developer Team

  • 3EA3/ 3.0 production - Schema browser

    I just started to play with EA3 and i found a strange behaviour when i'm using Schema Browser and try to filter the schema:
    - by default system user is shown and when i insert a different name - say test - under filter schema, i see the little filter symbol on the right side of the system user and i don't see any objects but i can see other schema's objects including test schema.
    My understanding is that by filtering the schema i should see only the filtered objects but this is not the case.
    In addition to this, i would expect the filtered user - in my case TEST - to be shown having the filter symbol(i don't want to go through the whole list of schemas and look for the filter symbol).
    Is this a bug or i'm missing something?
    Thanks,
    Dani

    I confirm the bug it's fixed in the final release, thanks John!
    I have also found that
    1) if i set the filter schemas and restart SqlDev, the filter is cleared
    Is this intended or it's a bug? Is it possible to keep the settings or set the default schema per connection?
    I remember i saw a request on exchange about setting the default schema, i'll try to find it.
    2) if i open the Schema browser and then close the connection, the Schema browser remains opened.
    This implementation is very awkward since you can't do anything with the Schema browser if the connection is closed, so what's the reason of not closing it??
    John,
    let me know your thought and then will see if i have to open a new request on Exchange.
    Thanks,
    Dani

  • HT4970 does any one else miss the month at a glance that the old version of reminders had? I wish Apple would bring that feature back.

    Does anyone else miss the month-at-a-glance feature from the old version of Reminders app? I wish Apple would bring that feature back. It made it very convenient to schedule for the future.

    You  can send feedback and let Apple know
    http://www.apple.com/feedback/

  • I am trying to start DAC 11g server in AIX but getting erorr (MESSAGE:::Schema version is missing or old).

    OS detected: AIX
    Jan 14, 2014 4:33:52 PM com.siebel.etl.etlmanager.DerivedConstants getDacDomainHome
    INFO: The DAC_DOMAIN_HOME set to /apps/DAC11g/dac
    Jan 14, 2014 4:33:52 PM com.siebel.etl.etlmanager.DerivedConstants getDacConfigLocation
    INFO: The DAC_CONFIG_LOCATION value hasn't been found, the USERDIR value was used instead
    Jan 14, 2014 4:33:52 PM com.siebel.etl.etlmanager.DerivedConstants getDacConfigLocation
    INFO: The DAC_CONFIG_LOCATION set to /apps/DAC11g/dac
    Jan 14, 2014 4:33:52 PM com.siebel.etl.etlmanager.DerivedConstants getOracleDacHome
    INFO: The BI_ORACLE_HOME value hasn't been found, the USERDIR value was used instead
    Jan 14, 2014 4:33:52 PM com.siebel.etl.etlmanager.DerivedConstants getOracleDacHome
    INFO: The ORACLEDIR set to /apps/DAC11g/dac
    Jan 14, 2014 4:33:53 PM com.siebel.etl.bootup.ApplicationManager <init>
    INFO: Application booting up...
    Jan 14, 2014 4:33:54 PM oracle.security.jps.internal.common.util.XmlSchemaValidationUtil$StrictErrorHandler warning
    WARNING: Failed to validate the xml content. SchemaLocation: schemaLocation value = 'http://xmlns.oracle.com/oracleas/schema/11/jps-config-11_1.xsd' must have even number of URI's. Location: line 2 column 272.
    Jan 14, 2014 4:33:56 PM com.siebel.etl.database.ConnectionManager init
    INFO: Creating repository pool
    Jan 14, 2014 4:34:00 PM com.siebel.etl.database.ConnectionManager init
    INFO: Repository pool created
    Jan 14, 2014 4:34:00 PM com.siebel.etl.net.QServer <init>
    GLOBAL: DAC Version: Dac Build AN 11.1.1.6.4.20121119.2022
    Jan 14, 2014 4:34:00 PM com.siebel.etl.net.QServer <init>
    GLOBAL: Process name: 18940116@lfx007qpa
    Jan 14, 2014 4:34:00 PM com.siebel.etl.net.QServer <init>
    GLOBAL: The System properties are: java.assistive       ON
    java.runtime.name       Java(TM) SE Runtime Environment
    ibm.signalhandling.rs   false
    sun.boot.library.path   /usr/java6_64/jre/lib/ppc64/default:/usr/java6_64/jre/lib/ppc64
    java.vm.version 2.4
    com.ibm.oti.configuration       scar
    java.vm.vendor  IBM Corporation
    java.vendor.url http://www.ibm.com/
    path.separator  :
    java.vm.name    IBM J9 VM
    user.country    US
    sun.java.launcher       SUN_STANDARD
    user.dir        /apps/DAC11g/dac
    java.vm.specification.name      Java Virtual Machine Specification
    java.runtime.version    pap6460sr9fp1-20110208_03 (SR9 FP1)
    java.fullversion        JRE 1.6.0 IBM J9 2.4 AIX ppc64-64 jvmap6460sr9-20110203_74623 (JIT enabled, AOT enabled)
    J9VM - 20110203_074623
    JIT  - r9_20101028_17488ifx3
    GC   - 20101027_AA
    java.awt.graphicsenv    sun.awt.X11GraphicsEnvironment
    java.endorsed.dirs      /usr/java6_64/jre/lib/endorsed
    os.arch ppc64
    com.ibm.vm.bitmode      64
    java.io.tmpdir  /tmp/
    line.separator
    com.ibm.util.extralibs.properties
    java.vm.specification.vendor    Sun Microsystems Inc.
    user.variant
    java.awt.fonts
    os.name AIX
    sun.java2d.fontpath
    java.jcl.version        20110203_01
    sun.jnu.encoding        ISO8859-1
    java.library.path       /usr/java6_64/jre/lib/ppc64/default:/usr/java6_64/jre/lib/ppc64:/usr/java6_64/jre/lib/ppc64:/usr/java6_64/jre/lib/ppc64/default:/usr/java6_64/jre/lib/ppc64/j9vm:/usr/java6_64/jre/lib/ppc64:/usr/java6_64/jre/../lib/ppc64:/apps/oracle/oraclehomes/11.2.0/lib:/apps/Informatica9/9.0.1/server/bin:/apps/Informatica9/9.0.1:/apps/Informatica9/9.0.1/ODBC6.0/lib:.:/apps/Informatica9/9.0.1/server/bin:/apps/Informatica9/9.0.1/server/bin:/apps/Informatica9/9.0.1/server/bin:/apps/Informatica9/9.0.1/server/bin:/apps/Informatica9/9.0.1/server/bin:/apps/Informatica9/9.0.1/server/bin:/apps/Informatica9/9.0.1/server/bin:/apps/Informatica9/9.0.1/server/bin:/apps/Informatica9/9.0.1/server/bin:/apps/Informatica9/9.0.1/server/bin:/apps/Informatica9/9.0.1/server/bin:/apps/Informatica9/9.0.1/server/bin:/apps/Informatica9/9.0.1/server/bin:/apps/Informatica9/9.0.1/server/bin:/apps/Informatica9/9.0.1/server/bin:/usr/lib:/apps/Informatica9/9.0.1/server/bin:/apps/oracle/oraclehomes/11.2.0/lib:/apps/Informatica9/9.0.1:/apps/Informatica9/9.0.1/ODBC6.0/lib:/apps/Informatica9/9.0.1/server/bin:/apps/Informatica9/9.0.1/server/bin:/apps/Informatica9/9.0.1/server/bin:/apps/Informatica9/9.0.1/server/bin:/apps/Informatica9/9.0.1/server/bin:/apps/Informatica9/9.0.1/server/bin:/apps/Informatica9/9.0.1/server/bin:/apps/Informatica9/9.0.1/server/bin:/apps/Informatica9/9.0.1/server/bin:/apps/Informatica9/9.0.1/server/bin:/apps/Informatica9/9.0.1/server/bin:/apps/Informatica9/9.0.1/server/bin:/apps/Informatica9/9.0.1/server/bin:/usr/lib
    jxe.current.romimage.version    15
    com.ibm.oti.vm.bootstrap.library.path   /usr/java6_64/jre/lib/ppc64/default:/usr/java6_64/jre/lib/ppc64
    com.ibm.cpu.endian      big
    java.specification.name Java Platform API Specification
    java.class.version      50.0
    ibm.system.encoding     ISO8859-1
    java.util.prefs.PreferencesFactory      java.util.prefs.FileSystemPreferencesFactory
    os.version      6.1
    com.ibm.oti.vm.library.version  24
    com.ibm.jcl.checkClassPath
    user.home       /home/snlmgr
    user.timezone   America/Los_Angeles
    java.awt.printerjob     sun.print.PSPrinterJob
    file.encoding   ISO8859-1
    java.specification.version      1.6
    user.name       snlmgr
    java.class.path ./lib/msbase.jar:./lib/mssqlserver.jar:./lib/msutil.jar:./lib/sqljdbc.jar:./lib/ojdbc6.jar:./lib/ojdbc5.jar:./lib/ojdbc14.jar:./lib/db2java.zip:./lib/teradata.jar:./lib/terajdbc4.jar:./lib/log4j.jar:./lib/tdgssjava.jar:./lib/tdgssconfig.jar:./lib/nzjdbc.jar:./lib/bijdbc.jar:./lib/ttjdbc6.jar:./lib/orai18n.jar:./lib/timestenjmsxla.jar:./lib/jms.jar:./lib/javax.jms.jar:./DAWSystem.jar:./lib/biacm.paramproducer.jar::./lib/oracle_common/modules/oracle.pki_11.1.1/oraclepki.jar:./lib/oracle_common/webservices/wsclient_extended.jar:./lib/oracle_common/modules/oracle.jmx_11.1.1/jmxspi.jar:./lib/oracle_common/modules/oracle.odl_11.1.1/ojdl.jar:./lib/oracle_common/modules/oracle.jps_11.1.1/jps-internal.jar:./lib/oracle_common/modules/oracle.jps_11.1.1/jps-platform.jar:./lib/oracle_common/modules/oracle.jps_11.1.1/jps-se.jar:./lib/oracle_common/modules/oracle.idm_11.1.1/identitystore.jar:./lib/oracle_common/modules/oracle.jps_11.1.1/jps-az-rt.jar:./lib/oracle_common/modules/oracle.jps_11.1.1/jacc-spi.jar:./lib/oracle_common/modules/oracle.iau_11.1.1/fmw_audit.jar:./lib/oracle_common/modules/oracle.jmx_11.1.1/jmxframework.jar:./lib/oracle_common/modules/oracle.igf_11.1.1/identitydirectory.jar::./lib/oracle_common/jlib/help-share.jar:./lib/oracle_common/jlib/ohj.jar:./lib/oracle_common/jlib/jewt4.jar:./lib/oracle_common/jlib/share.jar:./lib/oracle_common/jlib/oracle_ice.jar:
    com.ibm.oti.shared.enabled      false
    java.vm.specification.version   1.0
    sun.arch.data.model     64
    sun.java.command        com.siebel.etl.net.QServer
    java.home       /usr/java6_64/jre
    com.ibm.oti.jcl.build   20110202_1316
    user.language   en
    ibm.signalhandling.sigint       true
    java.specification.vendor       Sun Microsystems Inc.
    os.encoding     ISO8859-1
    oracle.security.jps.config      /apps/DAC11g/dac/conf/security/jps-config-jse.xml
    java.vm.info    JRE 1.6.0 IBM J9 2.4 AIX ppc64-64 jvmap6460sr9-20110203_74623 (JIT enabled, AOT enabled)
    J9VM - 20110203_074623
    JIT  - r9_20101028_17488ifx3
    GC   - 20101027_AA
    java.version    1.6.0
    java.ext.dirs   /usr/java6_64/jre/lib/ext
    jxe.lowest.romimage.version     15
    sun.boot.class.path     /usr/java6_64/jre/lib/ppc64/default/jclSC160/vm.jar:/usr/java6_64/jre/lib/annotation.jar:/usr/java6_64/jre/lib/beans.jar:/usr/java6_64/jre/lib/java.util.jar:/usr/java6_64/jre/lib/jndi.jar:/usr/java6_64/jre/lib/logging.jar:/usr/java6_64/jre/lib/security.jar:/usr/java6_64/jre/lib/sql.jar:/usr/java6_64/jre/lib/ibmorb.jar:/usr/java6_64/jre/lib/ibmorbapi.jar:/usr/java6_64/jre/lib/ibmcfw.jar:/usr/java6_64/jre/lib/rt.jar:/usr/java6_64/jre/lib/charsets.jar:/usr/java6_64/jre/lib/resources.jar:/usr/java6_64/jre/lib/ibmpkcs.jar:/usr/java6_64/jre/lib/ibmcertpathfw.jar:/usr/java6_64/jre/lib/ibmjgssfw.jar:/usr/java6_64/jre/lib/ibmjssefw.jar:/usr/java6_64/jre/lib/ibmsaslfw.jar:/usr/java6_64/jre/lib/ibmjcefw.jar:/usr/java6_64/jre/lib/ibmjgssprovider.jar:/usr/java6_64/jre/lib/ibmjsseprovider2.jar:/usr/java6_64/jre/lib/ibmcertpathprovider.jar:/usr/java6_64/jre/lib/ibmxmlcrypto.jar:/usr/java6_64/jre/lib/management-agent.jar:/usr/java6_64/jre/lib/xml.jar:/usr/java6_64/jre/lib/jlm.jar:/usr/java6_64/jre/lib/javascript.jar
    java.vendor     IBM Corporation
    file.separator  /
    java.compiler   j9jit24
    sun.io.unicode.encoding UnicodeBig
    ibm.signalhandling.sigchain     true
    Jan 14, 2014 4:34:00 PM com.siebel.etl.engine.core.ETLUtils logException
    SEVERE:
    ANOMALY INFO::: QServer will stop owing to repository version mismatch: Schema version is missing or old.
    Try upgrading repository.
    MESSAGE:::Schema version is missing or old.
    Try upgrading repository.
    EXCEPTION CLASS::: com.siebel.etl.upgrade1.VersionMismatchException
    com.siebel.etl.upgrade1.UpgradeUtils.isRepositoryValid(UpgradeUtils.java:96)
    com.siebel.etl.net.QServer.versionIntegrityCheck(QServer.java:461)
    com.siebel.etl.net.QServer.<init>(QServer.java:132)
    com.siebel.etl.net.QServer.main(QServer.java:499)

    (1) Download the Windows Installer CleanUp utility installer file (msicuu2.exe) from the following Major Geeks page (use one of the links under the "DOWNLOAD LOCATIONS" thingy on the Major Geeks page):
    http://majorgeeks.com/download.php?det=4459
    (2) Doubleclick the msicuu2.exe file and follow the prompts to install the Windows Installer CleanUp utility. (If you're on a Windows Vista or Windows 7 system and you get a Code 800A0046 error message when doubleclicking the msicuu2.exe file, try instead right-clicking on the msicuu2.exe file and selecting "Run as administrator".)
    (3) In your Start menu click All Programs and then click Windows Install Clean Up. The Windows Installer CleanUp utility window appears, listing software that is currently installed on your computer.
    (4) In the list of programs that appears in CleanUp, select any iTunes entries and click "Remove", as per the following screenshot:
    (5) Quit out of CleanUp, restart the PC and try another iTunes install. Does it go through properly this time?

  • All project tasks appear when I view a schedule in PWA but the schedule is blank in MS Project Professional

    We have a project in our Project Server 2010 environment and it was being managed for a period of time without any issues.  Recently, a user has gone into PWA and edited the schedule in PWA by deleting all the tasks and re-creating a new set of tasks. 
    He has saved and published the project from within PWA.
    However, although the schedule can be viewed and edited from within PWA, if we try to open it in MS Project, the schedule is blank.  ie. there are no tasks displayed.  It is the correct project as the project name appears at the top of the MS Project
    window.
    I have tried saving and publishing the schedule via PWA but I still get a blank scehdule when I open it in MS Project Professional.
    I have also cleared the cache in case there was something happening there but no change.
    Does anyone have any ideas on what could be causing this and how to resolve it?
    PS. I am not technical so if you have a technical solution, can you please explain it in as non-technical terms as possible?
    Thanks
    Peter

    Hi Paul
    As I mentioned in my post, when I open the scheudle in MS Project, there are no tasks displayed.  ie. the schedule is totally blank.  So although it could be opened, I was reluctant to publish it via MS Project.  I did delete the MS Project
    cache as well as the IE Browser history, cookies etc but no effect.
    This is now a mute point as I decided to restore an earlier version of the schedule from the backups and it now seems to have been resolved.  The schedule is appearing in both PWA and MS Project and they are in synch with each other.
    I have put this down to a random corruption that somehow crept into the schedule.
    Thanks for your response anyway.
    Peter

  • When interactive pdf opens in browser window can the pdf links open in separate windows

    Problem is the pdf works ok when it opens in the browser window, BUT the links in the pdf don't open in separate browser windows, as they do when the pdf is downloaded as a file.
    If pdf links can only open in separate browser window when the pdf itself opens as a separate file, the how do I email a pdf download link on a website.

    Hello Yesh,
    you can open PDFs as a guest user (without authentification):
    1. Allow Guest Access (Admin -> Security Configuration -> Check "Allow Guest Access" and select a folder name).
    2. Copy your Report into this guest folder
    3. You can open the Report as PDF with a link like this:
    http://(bip-server-name):9704/xmlpserver/(guest-folder-name)/(report-name)/(report-name).xdo?_xpt=0&_xf=pdf&_xmode=4(&report-parameters)
    Just replace the strings in brackets. You find a great description of the URL parameters in Tim Dexters Blog
    http://blogs.oracle.com/xmlpublisher/2006/07/accessing_xmlp_enterprise_repo.html
    I didn't find an option to set the height of the PDF-Output for the guest user in the BIP-UI. Maybe I missed something. But you can manually edit the configuration file. It is located on your BIP server direcory in the subdirectory xmlp/XMLP/Users. Select the guest users subdirectory and edit the configuration file "user~.profile".
    In this XML config file there is an entry "viewerHeight". In the Value-Tag you can enter the PDF output windows height in pixel (but unfortunaly not in % - this was the question of my original posting).
    Hope that helps...
    Sascha
    Edited by: sascha@tesat on Oct 26, 2009 9:02 AM

  • Browser bar and the bar above it disappeared, how do I get it back

    I have Safari on my PC and the browser bar and the bar that has the files, edit, etc on it disappeared, how do I get it back? I was allowing my 2 year old daughter watch a show on netflix using google chrome but somehow she managed to get safari open and net thing I knew the browser bar is missing and when I tried to get it back, I managed to make things worse by making the bar above it disappear too. How do I get them back?

    The OP is using or trying to use OS X on a non-Apple netbook or I've misunderstood.
    What on earth makes you think that? He's posted in the Windows category of the Safari community. He has never mentioned Mac OS. He said Safari was installed on his PC in his very first post. Furthermore, the details of his replies to your advice are precisely what you should expect if he was using Safari for Windows, and trying to implement the (inapplicable and unimplementable) Safari for Mac advice in the context of his particular issue. You've got this one very badly wrong from the beginning right through to now, and in that context the implication that he was trying to get advice here on how to do something illegal was not only wrong, but insulting.

  • Editing the Schedule PDP, at the Page Details Web Part, inserted wrong Project Web App URL. Now, cannot access Project Schedules.

    I need a help. The environment, SharePoint and Project Server 2013 and SQL Server 2012, running on Windows Server 2008. Editing Details Web Part in a Schedule PDP Page, saved invalid Project Web App URL. After that, can display the Project Information and
    Project Details Pages from the projects accessed, and can display the Project site, too. But, when I access the Project Schedule Page, receive an error page, because of the invalid URL. The message is obvious: "There
    is no Web named xxxxxxx". I´ve tried to find out how to correct this, but no success, because cannot open the Project Schedule page anymore.
    I would like to know if there is some way to fix it without re-installing the system. Thanks for all. If somebody need more information, have log information and page display available. 

    Luis,
    Have you tried this?
    Navigate to the schedule PDP, in the browser address bar, append the string
    ?Contents=1, like thus:
    https://<your PWA Address>/Project%20Detail%20Pages/Schedule.aspx?Contents=1
    This will open the Webpart Maintenance page. Now, select the Details
    webpart, and Delete it. Once done, navigate bacjk to the webpart page, edit page, and re-add the Details Webpart to the page.
    This should fix your issue.
    Cheers,
    Prasanna Adavi, Project MVP
    Blog:
      Podcast:
       Twitter:   
    LinkedIn:
      

  • SQL Dev 2.1 RC1 - Expanding packages under Schema Browser

    When i navigate to the the schema brower and expand my list of packages i click on the (+) to expand the package and see the body but by clicking on the (+) it open the package spec in a sql worksheet, if i then close this it collapses the package up again but the second time i can then expand down to body but this to then open up straight away before i get a chance to specify which proc/function i want to look at.
    Anyone else hiting this problem ?
    Is this expected or is it a bug ?
    Thanks
    Trotty
    I am running against a 9i DB if that makes any difference.
    Edited by: Trotty on Dec 3, 2009 1:06 PM

    Trotty,
    thanks for your reply.
    That did the trick... kind of. I'm now forced to double click to open the body. :(
    I find really frustrating how a development tool makes browsing and accessing the objects a PL/SQL developer deals with more frequently (package BODIES) inconvenient.
    OTOH it's free, so maybe I should just shut up and go back to work... :)
    Alessandro
    Edit: BTW, it's still a bug, IMHO as I didn't click on the object but only expanded a node clicking on +* (that option should have nothing to do with this action).
    Edited by: archimede on Dec 18, 2009 12:39 PM

  • Error triggering the scheduler in SPM 2.1

    Hello Experts,
    We are trying to start the scheduler in SPM 2.1 using URL
    http://pipapp24.esc.win.colpal.com:52400/aui_olap/scheduler
    but we are getting this error and scheduler is not started :
    Application error occurred during request processing.
      Details:   com.sap.analytics.aui.persistence.repository.AccessDeniedException: User XSAUSER has no permission to access node /application/appProperties/SAP_OPM_APP
    Exception id: [020F4102C00200620000012000EB00A80004AAC9C8C78249]
    For the scheduler we have created service XSAUSER id in ABAP with all the required access (SAP_XA_ADMINISTRATOR , SAP_XA_USER ). Also granted access in the portal  to the SSA and also portal Admin roles to this user
    What authorization are we missing?
    Thanks!

    Hi All,
    Make sure you have S_DEVELOP, T-D1281251/259/261 under profiles for user XSAUSER.
    Finally issue got resolved for me after adding above profiles to the XSAUSER.
    Regards,
    Joseph
    Edited by: Joseph Chinnabathini on Dec 8, 2011 7:00 AM

Maybe you are looking for

  • XI for create web servicies for SAP R/3 4.6C

    Hi All, we are implementing PM (Plant Management) module of SAP R/3 4.6C and we have the necessity to create web services for some PM functionalities. Infact we need to integrate our SAP R/3 4.6C with other applications (non-SAP) through TIBCO (it's

  • Table Name for Sales Order Header Text.

    Hi. Whats the Table name for Sales Order Header Text??? Reg, Amol

  • How to open multipage tiff images in PSE 7

    When I open a pdf file with multiple pages, each page is viewed as a thumbnail.  But I can't seem to open a file containing multiple tiff images.  How do I do this with PSE 7?  Thanks.

  • Error is Shiiping point  in Sales order

    Hi friends, Ship.condition  loading grp 0001 plant SF01 StLoc PR03 not defined I have a material which has been created in storage location PR03. I am trying to make a sales order but when i try to save the sales order order I am getting the above er

  • Netui:select default value at the top

    I am using netui:select with following syntax: <netui:select defaultValue="--Select--" dataSource="{actionForm.contactType}" optionsDataSource="{pageFlow.contactTypes}" styleClass="app-commomForm"> </netui:select> The problem is "--Select--" is shown