Automating Administrator creation in 11g OMS

Is there any way to automate the creation of an Administrator in 11g OMS? I can automagically create the database user, but there are some resource privs that need to be granted as well. If anyone has done this, I would be grateful for some steps in the proper direction.
Thanx in advance.

Thanx for the tip using emcli. We have an automated system that let's us know when a new user is requested for our OMS. I am looking to let that message be the trigger for an additional automated process for the user creation.
One thing I noticed is that the emcli command creates the application user but not the database user. It also has the incorrect database profile. Perhaps I am missing something?
Here is the command I used:
emcli create_user -name=TEST123 -desc="Test using EMCLI" -privilege="VIEW_ANY_TARGET" -expire="true" -password="XXXXXXXXXX" -email="[email protected]" -profile="XXX_PWD_AGING" -roles="PUBLIC" -type="DB_EXTERNAL_USER"
And here is my output from both emcli and sqlplus:
User "TEST123" created successfully
SQL> select * from dba_users where username = 'TEST123';
no rows selected
Perhaps I am missing something?

Similar Messages

  • Automated Glossary Creation

    Currently re-designing our publishing workflow from custom legacy FrameMaker system to InDesign.
    Trying to work out best method of handling automated glossary creation. Currently using mark-up tags in Frame to create a numerical tag for reference to a Glossary term which can then be searched within Frame through a script and each term selected in a book/document to be defined. These terms are defined within a database and then can be searched within the data-base with reference to a specific document while also keeping the data-base current with all such defined terms.
    Any similar type of tagging available in InDesign where a custom tag can be created with a numerical reference (or something similar)?
    Have a load of other questions and would appreciate an Adobe publishing workflow consultant contact if such is available.
    Thanks.
    Jason

    Here is a (horrible!) Javascript to add a tag to any selected text and automatically prompt for an attribute value. You need to add a basic XML framework around your text first, else it will Not Run. (Select a text frame, call up the Tags panel, and then select "Autotag" from the dropdown menu for a basic structure.)
    In this script you might want to adjust the name of the XML tag (the first "tag" in the double 'add' line) and the attribute name ("id" in the second part of the 'add' line).
    In this form, the script does not allow you to re-define a previously tagged item (use the Structure panel for that) or to remove a tag (use Untag in the Tags panel). Running it twice on a selected text will add a new nested tag! (But as always, anything is possible with a longer/smarter/less horrible script.)
    if (app.selection.length==1 && app.selection[0].hasOwnProperty("baseline") && app.selection[0].length)
    tagId = prompt ("Tag with ID:", '');
    if (tagId)
      app.selection[0].associatedXMLElements[0].xmlElements.add("tag", app.selection[0]).xmlAttributes.add("id", tagId);

  • Need Steps or documents to connect existing 10g agent to 11g oms

    Hi All,
    Just installed 11g oms on oel 5.5 linux and it runs good. We have several hp servers run 10205 agents and they are monitored by 10205 oms on window. We want to use this new 11g oms to replace the 10205 oms. How to make this 11g linux oms to find the 10g hp agents?
    Has anyone known the steps to configure an existing 10205 hp agent to connect to linux 11g oms? Or generally the steps to modify an existing 10g agent to see the 11g oms?
    Thanks in advance for any help!

    Sorry my mistake.
    You should
    1.
    Stop the Management Agent.
    2.
    Locate the emd.properties file in the Management Agent home directory:
    AGENT_HOME/sysman/config/emd.properties
    3.
    Use a text editor to open the file and locate the REPOSITORY_URL property.
    4.
    Modify the value for the REPOSITORY_URL property so it references the new Management Service. For example:
    REPOSITORY_URL=http://mgmthost2.acme.com:4889/em/upload
    5.
    Modify the value for the emdWalletSrcUrl property so it references the new Management Service. For example, if the new Management Service is on a host called mgmthost2.acme.com , modify the property as follows:
    emdWalletSrcUrl=http://mgmthost2.acme.com:4889/em/wallets/emd
    6.
    Save your changes and close the emd.properties file.
    7.
    To ensure that the Management Agent is no longer holding any specific data or settings from the previous Management Service, delete all the files in the following directories:
    AGENT_HOME/sysman/emd/upload/
    AGENT_HOME/sysman/emd/state/
    AGENT_HOME/sysman/emd/collection/*
    AGENT_HOME/sysman/emd/lastupld.xml
    AGENT_HOME/sysman/emd/agntstmp.txt
    AGENT_HOME/sysman/emd/blackouts.xml
    AGENT_HOME/sysman/emd/protocol.ini
    Note that this action removes all user-defined metrics (UDM)s and custom changes to metric and policy collections.
    Note:
    You can use the emctl clearstate agent command to delete the files in the state directory.
    8.
    Restart the Management Agent.
    as directed by mnazim (sorry)
    http://download.oracle.com/docs/cd/E11857_01/em.111/e16790/ha_agent.htm#BABDFBGA

  • Automating the creation of a HDinsight cluster

    Hi,
    I am trying to automate the creation of a HDinsight cluster using Azure Automation to execute a powershell script (the script from the automation gallery). When I try and run this (even without populating any defaults), it errors with the following error:
    "Runbook definition is invalid. In a Windows PowerShell Workflow, parameter defaults may only be simple value types (such as integers) and strings. In addition, the type of the default value must match the type of the parameter."
    The script I am trying to run is:
    <#
     This PowerShell script was automatically converted to PowerShell Workflow so it can be run as a runbook.
     Specific changes that have been made are marked with a comment starting with “Converter:”
    #>
    <#
    .SYNOPSIS
      Creates a cluster with specified configuration.
    .DESCRIPTION
      Creates a HDInsight cluster configured with one storage account and default metastores. If storage account or container are not specified they are created
      automatically under the same name as the one provided for cluster. If ClusterSize is not specified it defaults to create small cluster with 2 nodes.
      User is prompted for credentials to use to provision the cluster.
      During the provisioning operation which usually takes around 15 minutes the script monitors status and reports when cluster is transitioning through the
      provisioning states.
    .EXAMPLE
      .\New-HDInsightCluster.ps1 -Cluster "MyClusterName" -Location "North Europe"
      .\New-HDInsightCluster.ps1 -Cluster "MyClusterName" -Location "North Europe"  `
          -DefaultStorageAccount mystorage -DefaultStorageContainer myContainer `
          -ClusterSizeInNodes 4
    #>
    workflow New-HDInsightCluster99 {
     param (
         # Cluster dns name to create
         [Parameter(Mandatory = $true)]
         [String]$Cluster,
         # Location
         [Parameter(Mandatory = $true)]
         [String]$Location = "North Europe",
         # Blob storage account that new cluster will be connected to
         [Parameter(Mandatory = $false)]
         [String]$DefaultStorageAccount = "tavidon",
         # Blob storage container that new cluster will use by default
         [Parameter(Mandatory = $false)]
         [String]$DefaultStorageContainer = "patientdata",
         # Number of data nodes that will be provisioned in the new cluster
         [Parameter(Mandatory = $false)]
         [Int32]$ClusterSizeInNodes = 2,
         # Credentials to be used for the new cluster
         [Parameter(Mandatory = $false)]
         [PSCredential]$Credential = $null
     # Converter: Wrapping initial script in an InlineScript activity, and passing any parameters for use within the InlineScript
     # Converter: If you want this InlineScript to execute on another host rather than the Automation worker, simply add some combination of -PSComputerName, -PSCredential, -PSConnectionURI, or other workflow common parameters as parameters of
    the InlineScript
     inlineScript {
      $Cluster = $using:Cluster
      $Location = $using:Location
      $DefaultStorageAccount = $using:DefaultStorageAccount
      $DefaultStorageContainer = $using:DefaultStorageContainer
      $ClusterSizeInNodes = $using:ClusterSizeInNodes
      $Credential = $using:Credential
      # The script has been tested on Powershell 3.0
      Set-StrictMode -Version 3
      # Following modifies the Write-Verbose behavior to turn the messages on globally for this session
      $VerbosePreference = "Continue"
      # Check if Windows Azure Powershell is avaiable
      if ((Get-Module -ListAvailable Azure) -eq $null)
          throw "Windows Azure Powershell not found! Please make sure to install them from 
      # Create storage account and container if not specified
      if ($DefaultStorageAccount -eq "") {
          $DefaultStorageAccount = $Cluster.ToLowerInvariant()
          # Check if account already exists then use it
          $storageAccount = Get-AzureStorageAccount -StorageAccountName $DefaultStorageAccount -ErrorAction SilentlyContinue
          if ($storageAccount -eq $null) {
              Write-Verbose "Creating new storage account $DefaultStorageAccount."
              $storageAccount = New-AzureStorageAccount –StorageAccountName $DefaultStorageAccount -Location $Location
          } else {
              Write-Verbose "Using existing storage account $DefaultStorageAccount."
      # Check if container already exists then use it
      if ($DefaultStorageContainer -eq "") {
          $storageContext = New-AzureStorageContext –StorageAccountName $DefaultStorageAccount -StorageAccountKey (Get-AzureStorageKey $DefaultStorageAccount).Primary
          $DefaultStorageContainer = $DefaultStorageAccount
          $storageContainer = Get-AzureStorageContainer -Name $DefaultStorageContainer -Context $storageContext -ErrorAction SilentlyContinue
          if ($storageContainer -eq $null) {
              Write-Verbose "Creating new storage container $DefaultStorageContainer."
              $storageContainer = New-AzureStorageContainer -Name $DefaultStorageContainer -Context $storageContext
          } else {
              Write-Verbose "Using existing storage container $DefaultStorageContainer."
      if ($Credential -eq $null) {
          # Get user credentials to use when provisioning the cluster.
          Write-Verbose "Prompt user for administrator credentials to use when provisioning the cluster."
          $Credential = Get-Credential
          Write-Verbose "Administrator credentials captured.  Use these credentials to login to the cluster when the script is complete."
      # Initiate cluster provisioning
      $storage = Get-AzureStorageAccount $DefaultStorageAccount
      New-AzureHDInsightCluster -Name $Cluster -Location $Location `
            -DefaultStorageAccountName ($storage.StorageAccountName + ".blob.core.windows.net") `
            -DefaultStorageAccountKey (Get-AzureStorageKey $DefaultStorageAccount).Primary `
            -DefaultStorageContainerName $DefaultStorageContainer `
            -Credential $Credential `
            -ClusterSizeInNodes $ClusterSizeInNodes
    Many thanks
    Brett

    Hi,
    it appears that [PSCredential]$Credential = $null is not correct, i to get the same
    error, let me check further on it and revert back to you.
    Best,
    Amar

  • Automating album creation for a new project?

    I have several projects (such as specific event shoots) with the same basic set of albums for that project (some regular albums, some smart albums). I'll have albums for specific subsets of the events (for my sports shots, there's Individuals, Action, Team, etc.).
    I'd like to automate the creation of these albums, as it gets a bit tedious having to create a bunch of albums manually for each new project I create. I looked at Aperture's automator actions, but couldn't find anything related to album creation. Is there such a thing?
    Thanks...
    David

    I'm pretty sure this is scriptable using AppleScript. I haven't really had the need to script Aperture so I can't tell you the exact syntax without looking it up myself, but it shouldn't be too hard if you've ever used AppleScript. Just open Script Editor, go to File > Open Dictionary... > Aperture and you'll get a list of the scriptable actions Aperture has available.

  • RMAN-04025 when performing automated TSPITR in Oracle 11g R2 (Enterprise)

    Hi guys,
    I'm sort of new to Oracle, so here is the problem I'm encountering:
    I have a database ('foo'), in which I have created a tablespace ('blue') (not as sysdba, but as user01 with dba privileges). I also created a table in tablespace's datafile and then add some data. Then I took backup of this tablespace along with the current controlfile and archivelog (backup lies into the C:\app\[username]flash_recovery_area\foo\backupset\[date]). Then I deleted the data of this tablespace and tried to perform automated tpsitr. As you can see below, my restoration point is based on the scn tag, I got from backup list (of this 'blue' tablespace) and I defined the auxiliary destination in 'C:\backup', which is an existing folder in my computer. So, I keep constantly getting this rman-04025 error. RMAN results are posted as follows: RMAN> recover tablespace blue
    2> until scn 1072119
    3> auxiliary destination 'C:\Backup';
    Starting recover at 26/02/13
    allocated channel: ORA_DISK_1
    channel ORA_DISK_1: SID=33 device type=DISK
    RMAN-05026: WARNING: presuming following set of tablespaces applies to specified
    point-in-time
    List of tablespaces expected to have UNDO segments
    Tablespace SYSTEM
    Tablespace UNDOTBS1
    Creating automatic instance, with SID='bsjC'
    initialization parameters used for automatic instance:
    db_name=FOO
    db_unique_name=bsjC_tspitr_FOO
    compatible=11.2.0.0.0
    db_block_size=8192
    db_files=200
    sga_target=280M
    processes=50
    db_create_file_dest=C:\Backup
    log_archive_dest_1='location=C:\Backup'
    #No auxiliary parameter file used
    RMAN-00571: ===========================================================
    RMAN-00569: =============== ERROR MESSAGE STACK FOLLOWS ===============
    RMAN-00571: ===========================================================
    RMAN-03002: failure of recover command at 02/26/2013 12:11:43
    RMAN-04025: unable to generate a temporary file
    After a quick search in the Internet I saw that this error might refer to resource/ memory issues, but I yet don't know how to deal with it.
    FYI my Oracle installation is on a i7-core processor 8GB RAM pc.
    Any ideas or suggestions regarding this issue, would be really helpful.
    Thanks in advance!

    I found Metalink document 391785.1
    this sounds very similar to what I am having
    Even though this bug is said to be fixed in 11g - probably its not fully fixed
    So , my only option is to use the manual way and create the auxiliary instance myself :-(
    Orna

  • Automating the creation of telephone accounts in call manager

    Hi, I have recently been asked to explore the possibility of automating telephone account creation in Cisco Call Manager, using scripting.  Now although my scripting knowledge isn't great, one idea that was suggested was the use of .csv files?  Any advice or tips about how to proceed would be very much appreciated. Thanks.

    Hi Jaime, thanks for your reply.  I have already discussed the possibility of using CUCM 10 although unfortunately this was ruled out straight away as the cost of implementing the latest version would be too expensive for our department.  I am also looking into the Cisco BAT and have an account for the CBT Nuggets to get some training on BAT.  Additionally, I am looking into writing up a simple script that could be used to change the formatting of a .csv file containing staff details that could then be uploaded to CUCM.

  • Automating Form Creation

    I have to create a set of application forms using Acrobat. My problem is that there are 12 x 6 x 5 variants, so would rather not create 360 individual forms.
    At the moment the workflow is as follows:
    Choose 1 of 12 Products
    Open 1 of 6 applicable app form templates (inDesign)
    Replace product name into [Product Name] placeholder (inDesign)
    Save a PDF down of each of the 5 serial codes for each template for each product.
    A simplified example:
    Product1_Template1_001.pdf
    Product1_Template1_002.pdf
    Product1_Template1_003.pdf
    Product1_Template2_001.pdf
    Product1_Template2_002.pdf
    Product1_Template2_003.pdf
    Product1_Template3_001.pdf
    Product1_Template3_002.pdf
    Product1_Template3_003.pdf
    Product2_Template1_001.pdf
    Product2_Template1_002.pdf
    Product2_Template1_003.pdf
    Product2_Template2_001.pdf
    Product2_Template2_002.pdf
    Product2_Template2_003.pdf
    Product2_Template3_001.pdf
    Product2_Template3_002.pdf
    Product2_Template3_003.pdf
    Ad nauseum....
    For each of these 360 pdfs, run app form wizard and save down (Acrobat Professional)
    As you can imagine the job is complex, and I would love a way of performing some sort of automation of the actual app form creation.
    A few notes (the serial codes are just a way for our client to track where the pdf originated from: i.e. tracking) If there is a different/easier way of doing this i'm all ears.
    Really if anyone knows of any ways of speeding up this process in any way, i'm all ears. Thanks.

    Yes, after you create the fields, you can replace the pages with pages from a different PDF and any fields will be retained. This process can be automated with the doc.replacePages JavaScript method: http://livedocs.adobe.com/acrobat_sdk/9.1/Acrobat9_1_HTMLHelp/JS_API_AcroJS.88.522.html

  • Automating Folder Creation

    Here's what I want to do. I'm trying to automate client folder creation. I have a directory called clients. Every time I create a new folder in the clients folder, I'd like for it to automatically ask me what I'd like to name the folder, then I would like it to create 6 directories inside the created folder titled "legal" "spec files" "correspondence" "modules""graphic design" and "archived materials".
    How would I go about that with automator?

    A couple of options. The first uses automator and a shell script, but you would run the workflow which asks for a folder name instead of you creating it first, as you requested. The second uses Folder Actions so that when you create a new folder in your clients folder it will ask for a name and create the folders.
    Automator Method:
    1) From Files and Folders, drag over a "New Folder" action.
    2) Enter a default name for the folder in the Name: field (or leave blank)
    3) Select your Clients folder in the Where: field
    4) Click the "Options" button and tell it to "show this action when the workflow runs"
    5) From the Utilities, drag over a "Do shell script" action
    6) Select the /bin/bash shell
    7) in the Pass input field select "As arguments"
    8) Enter this code mkdir -p $1/legal/ $1/spec files/ $1/correspondence/ $1/modules/ $1/graphic design/ $1/archived materials/
    Save this workflow and run it when you want to create the new folder. If you have quick keys, launch bar, Quicksilver, or the like, you could set up a shortcut...or, you can use cmd-space to call up spotlight and search for you workflow name and launch it from spotlight.
    For the Applescript option:
    I had some glitches with it in that it seemed to re-run the script after I changed the name. I couldn't figure out if the name change drove the script to run again. Also, after creating the new folder, you have to wait a few seconds for it to trigger. Kind of annoying, I thought.
    First, copy this script to a new Script Editor script (Applescript folder).
    property dialog_timeout : 30 -- set the amount of time before dialogs auto-answer.
    on adding folder items to this_folder after receiving added_items
    try
    tell application "Finder"
    set theFolder to item 1 of added_items
    set response to display dialog "Please enter a folder name:" default answer "New Client"
    if button returned of response is not "Cancel" then
    set the name of folder theFolder to (text returned of response)
    make new folder at folder theFolder with properties {name:"legal"}
    make new folder at folder theFolder with properties {name:"spec files"}
    make new folder at folder theFolder with properties {name:"correspondence"}
    make new folder at folder theFolder with properties {name:"modules"}
    make new folder at folder theFolder with properties {name:"graphic design"}
    make new folder at folder theFolder with properties {name:"archived materials"}
    end if
    end tell
    on error theErr
    display dialog theErr
    end try
    end adding folder items to
    Save it as a script in your user/Library/Scripts/Folder Action Scripts/ folder. Run the Folder Actions Setup script in the Applescript folder and attach this script to your "Clients" folder:
    1) Click on the Enable Actions checkbox
    2) Click the "+" button in the left pane and find your clients folder
    3) Click the "+" button in the right pane and find your script you just saved.

  • Grid Control 11g - OMS configuration issue

    I am installing Grid Control 11g on Linux 5. on the configuration step - OMS configuration failed. The log shows:
    INE: NMProcess: weblogic.nodemanager.common.ConfigException: The domain 'GCDomain' at '/opt/Oracle/Middleware/oms11g/user_projects/do
    mains/GCDomain' was not registered in the nodemanager.domains file and dynamic domain registration is not supported. Please register the d
    omain in the nodemanager.domains file.
    But I looked at the file: nodemanager.domains, there is an entry:
    #Domains and directories created by Configuration Wizard
    #Fri Jan 20 14:28:37 MST 2012
    GCDomain=/opt/Oracle/Middleware/oms11g/user_projects/domains/GCDomain
    So how to register GCDOMAIN?
    Please shed some lights. Thanks
    S.

    Hi Ski,
    Well the cause of this issue may vary depending on the WLS, EM GC and Oracle Critical Patch Update (CPU) that you have.
    But in general terms, you could try the following:
    1. Stop WLS
    2. copy nodemanager.domains from Middleware/wlserver_10.3/common/nodemanager to Middleware/wlserver_10.3/common/emnodemanager
    3. Start WLS (gc_inst/user_projects/domains/GCDomain/bin/startWebLogic.sh)
    4. Start nodemanager (Middleware/wlserver_10.3/server/bin/startNodeManager.sh)
    5. connect('<username>','<password>',t3://<ip address>:port')
    connect('weblogic','weblogic','t3://localhost:7001')
    6. nmEnroll([domainDir], [nmHome])
    nmEnroll('/u01/app/oracle/product/Grid11g/gc_inst/user_projects/domains/GCDomain','/u01/app/oracle/product/Grid11g/Middleware/wlserver_10.3/common/nodemanager')
    7. start OMS (Middleware/oms11g/bin> emctl start oms)
    Make sure to backup the mentioned directories accordingly before proceding with the steps mentioned above.
    Thanks,
    Cris

  • WF_DEFERRED_QUEUE_M table creation for 11g

    We are trying to create WF_DEFERRED_QUEUE_M after upgrade to 11g from 10g
    For table WF_DEFERRED_QUEUE_M with
    compatible parameter 8.0 works to create the table but refuses to create the queue.
    compatilble parameters 8.1 and 10.0 give “object already exists”
    all of the compatible parameters work if we specify MULTIPLE_CONSUMERS = FALSE
    Please help how do we create WF_DEFERRED_QUEUE_M table with option of MULTIPLE_CONSUMERS=TRUE for 11g
    (workflow background process program is failing with error of ORA-24039: Queue WF_DEFERRED_QUEUE_M not created in queue table for multiple consumers)

    What is the application release?
    We are trying to create WF_DEFERRED_QUEUE_M after upgrade to 11g from 10gHow? Are you using the script in (Workflow Queues Creation Scripts [ID 398412.1])?
    For table WF_DEFERRED_QUEUE_M with
    compatible parameter 8.0 works to create the table but refuses to create the queue.
    compatilble parameters 8.1 and 10.0 give “object already exists”WF_DEFERRED_QUEUE_M is a queue -- http://etrm.oracle.com/pls/trm11510/etrm_pnav.show_object?c_name=WF_DEFERRED_QUEUE_M&c_owner=APPLSYS&c_type=QUEUE
    all of the compatible parameters work if we specify MULTIPLE_CONSUMERS = FALSE
    Please help how do we create WF_DEFERRED_QUEUE_M table with option of MULTIPLE_CONSUMERS=TRUE for 11g
    (workflow background process program is failing with error of ORA-24039: Queue WF_DEFERRED_QUEUE_M not created in queue table for multiple consumers)Have you reviewed these docs (assuming you use the right script to create this queue)?
    USING SINGLE-CONSUMER QUEUE CAUSES ORA-24039 [ID 1301605.1]
    How to Resolve ORA-24039 on DBMS_AQADM.ADD_SUBSCRIBER [ID 98007.1]
    Thanks,
    Hussein

  • Administration Enterprise Manager 11g

    Hi, I have installed 11g. When you install, oracle create a db orcl. Well, I have created a new Db, is it possible to access to the new DB? and if it is possible, which are the steps i must follow.
    Best regards.
    Cuque

    user7948330 wrote:
    Hi, I have installed 11g. When you install, oracle create a db orcl. Well, I have created a new Db, is it possible to access to the new DB? and if it is possible, which are the steps i must follow.
    To expand on Sybrand's correct and extremely concise response ....
    Actually - when you install, you decide whether to create a DB and what to call it. That will call DBCA (B Config Assistant) to do the actual creation. After you install, you can use DBCA (DB Config Assistant) to create more databases (and also delete and configure options for databases).
    The default action duriung DBCA database create is (usually) to create a DB Control for that database. It does so by calling the EMCA (Enterpise Manager Confids Assistant). You can also call that assistant on the command line - details in the docs.
    Oracle designed Enterprise Manager Database Control to manage one, and only one, database. Each database normally gets it's own DBControl. Since this is quiclkly becomes a pain, the preferred solution is to use the Grid Control as a central console (with the same capabilities as DB Control, and more). Licensing of the Grid Control is discussed in the Database doc set (at htytp://tahiti.oracle.com) in the Licensing document.
    /Hans
    Oracle has written '2 day DBA' guides to help people get started. They are especially useful for those who have no time to read or learn, but have time to do (wrong?) things over and over again.

  • Oracle 11g OMS: Database Instance Home Tab:  Page Refreshed Timezone Issue

    Hi all...I've searched the forums and search engines for specific information on this issue, but have not seen a viable solution so far. We have Oracle 11g Grid Control 11.1.0.1
    installed on a Solaris V490 using Solaris 10, with an Oracle 11.2.0.1 database.
    The Database instance Home tab for all 50+ databases shows the date and time of the 'Page Refreshed' in GMT. The OS and the Agent software both are configured
    with the TZ set to US/Eastern. All other page displays e.g. Performance, Availability for Data Guard Standby etc. all show the refreshed time in EDT, it is ONLY
    the Home tab for the instance that has the GMT format.
    I have not seen any threads or other information that describes specifically how to correct this or even to change it. There are many related posts about the Agent
    end.properties, the OS /etc/timezone configuration parameters, the TZ environment variable etc. but in my case they are all set properly.
    Does anyone have any additional ideas or suggestions or knowledge about how , or even whether, this can be resolved?
    Thanks!
    DPH

    sqlplus ... Connected to an idle instance.That means the database you're trying to connect with is offline, thus the:
    ORA-01034: ORACLE not availableNo big surprise there, instance (that you're trying to connect with) is offline.
    First, make sure the service OracleServiceXE for the database is running, see the services applet, Start/Run/services.msc and if it does not show "Started" hit the Start button with the OracleServiceXE selected.
    sqlplus sys/admin@XE as sysdbaThat connection attempt uses sqlnet to the XE tnsalias. If you're on the database host the ...@XE part is not needed, better to use:
    $ sqlplus /nolog
    connect /as sysdba;
    ... Connected. #if its running
    -- or use:
    $ sqlplus
    ... username: sys as sysdba
    ... password ...
    Connected.
    -- also try
    $ sqlplus system
    ... password: ....
    Connected.
    select name from v$database;
    ...That also assumes the environment/registry entries have been configured correctly.
    tnsping XE ... Attempting to contact [tnsalias connect details] ... OK (10 msec)That tells you the listener is running. It does not mean anything more than your listener is running at the host and port specified for your tnsalias are correct. It does not attempt an actual database connection. So if the database is offline but the listener is running a tnsping will not identify that particuler "problem".
    lsnrctl status ... Endpoints Summary ... PROTOCOL=tcp)(HOST=chilakamarthy)(PORT=1521)))...That bit of info also verifies the listener is running. Again, check your services.msc applet make sure the service shows Started.
    Edited by: clcarter on Jun 7, 2012 2:15 PM
    clarify tnsping

  • Automated TR creation while release the Process Order

    I have to split the quantity into smaller units based on the ‘LE quantity’ before TR creation. In transaction LB03, there should be additional line items after the quantity split.
    I am using the EXIT ‘EXIT_SAPLLCPP_001’. It is triggering during the transaction run. But it doesn’t serve the purpose.
    Can anyone help me to achieve this functionality?

    Hi,
    In Process Order Header Screen Go to ---> Log ---> On Release.Here you will find the detail error behind this problem.Go though it .Resolve it and then try to release the Process Order, and if required get back to us.
    Suppose reason may be,
    - Missing part
    - Missing Capacity
    - Batch Determination is required to perform.
    - Any User Exit (Other then std. SAP)
    Regards,
    Dhaval

  • Automating the creation/deletion of a workspace

    Hi,
    Can the .SQL file generated by exporting a workspace be used to 're-create' that workspace outside of using the Apex Administration tool. Also, is it possible to generate a .SQL file that can be used to DROP a workspace ( again outside of using APEX ADMIn),
    thanks,
    Kevin.

    Hi Prabodh,
    I've run into a problem with re-creating a workspace using the .SQL file. I'm executing the file from SQL DEVELOPER using the sys account and I'm getting the following error:
    'Error Starting in line 88 in command:
    begin
    -- This date identifies the minimum version required to import this file.
    wwv_flow_team_api.check_version(p_version_yyyy_mm_dd=>'2010.05.13');
    end;
    Error Report:
    pls-00201:identifier 'WWV_FLOW_TEAM_API.CHECK_VERSION' must be declared
    The script has successfully passed 'calls' to wwv_flow_api and www.flow_fnd_user_api so I don't know why it should not recognise wwv_flow_team_api.
    The unrecognised package exists on the database and is owned by the account APEX_040000. However the account APEX_030200 also exists on the database
    and I am wondering if this may have something to do with the problem. Any thoughts on this would be gratefully received,
    regards,
    KEvin.

Maybe you are looking for

  • Crystal Report Hyperlink to Sub-report or other report

    Hi, I would like to create a report on which the first part will show project summary page. The second part will have all project detail pages and third part with all project financial informations. The report should work in such a way whenever user

  • EXIF data dropped when editing in Photoshop Elements 6.0 from iPhoto 8.0?

    I've seen various posts about EXIF data issues, mostly about geo info. My question is: Does iPhoto not include the EXIF data when you have it set to edit your photos in Photoshop Elements 6.0? The reason I ask is because I can easily see the EXIF dat

  • My iTunes wont open on my pc.

    It just gives me a blank popup. I already tried restarting my computer, but it still gives me the popup. I dont want to redownload, because my mom's music is stored on it too, and not all of it is on her iPod. I also dont want to download third party

  • Difference between business blueprint and functional spec

    hello can somebody please tell me the difference between business blueprint and functional spec and how they are interrelated Thanks

  • Implement CollectMerge without BPM?

    Hello all, I have the following scenario: 1. Synchronous message A sent to XI. 2. XI sends it to N receivers. 3. XI merges N responses of type B to one response of the same type. 4. XI sends the merged response as an answer to A. I implemented this s