Path false portfolio

Hi all

Client (32-bit) Oracle on x 64 Win8

Oracle DB 11.2.0.3 on 2.6.18 - 398.el5 Linux Linux x86_64 #1

I ' am configuration Oracle Wallet on my test environment and get an error on the test step:

C:\Users\ig > sqlplus /@db.tst

SQL * more: Production of the version 12.1.0.1.0 on Mon 26 Jan 09:50:14 2015

Copyright (c) 1982, 2013, Oracle.  All rights reserved.

ERROR:

ORA-12578: TNS:wallet open failed

Enter the user name:

Trace file indicates clearly that this portfolio is false (he added the backslash after the string path):

2015-01-26 09:50:14.265933: nzsuppwl_wallet_lookup: value:

Parameter "WALLET_LOCATION".

Method: "FILE."

Name of the file: "/ app/oracle/product/11.2.0.3/db_tst/wallet\cwallet.sso".

2015-01-26 09:50:14.265943: nzsuppwl_wallet_lookup:exit

2015-01-26 09:50:14.265950: nziropen:entry

2015-01-26 09:50:14.265959: nzdfo_open:entry

2015-01-26 09:50:14.265967: snzdfo_open_file:entry

2015-01-26 09:50:14.266030: open file with READ ONLY permissions /app/oracle/product/11.2.0.3/db_tst/wallet\ewallet.p12

2015-01-26 09:50:14.266137: file open/close error

2015-01-26 09:50:14.266154: file open/close error

09:50:14.266163 2015-01-26: rio failed with error 28759

My sqlnet.ora

WALLET_LOCATION =

(SOURCE =

(METHOD = FILE)

(METHOD_DATA =

(DIRECTORY = app/oracle/product/11.2.0.3/db_tst/wallet)

)

)

SQLNET. WALLET_OVERRIDE = TRUE

SSL_CLIENT_AUTHENTICATION = FALSE

NAMES. DIRECTORY_PATH = (TNSNAMES)

#SQLNET. AUTHENTICATION_SERVICES = (NTS)

How to avoid the transformation of the portfolio path?

Hope for your help

Kind regards

Igor G.

create on the client, don't copy

Tags: Database

Similar Questions

  • Bridge show/notify if a PS work path is present in a .tif file.

    Hi all, I am wanting to know if there is a way to bridge show/notify if a work path is present in a .tif file.

    I found this previous thread... but the containing link goes nowhere.

    Script to determine whether an image is a work of photoshop path or a saved track

    Any help much appreciated.

    Here's the script of Paul with the progress bar added.

    #target bridge
     if( BridgeTalk.appName == "bridge" ) {
    sortPaths = MenuElement.create("command", "Sort Paths", "at the end of Tools","clipping");
    }
    sortPaths.onSelect = function () {
    app.document.deselectAll();
    var thumbs = app.document.getSelection("psd, tif, jpg, eps");
    var value = 0;
    var win = new Window("palette{text:'Please be patient...',bounds:[100,100,580,140]," +
                   "progress:Progressbar{bounds:[20,10,460,30] , minvalue:0,value:" + value + "}};" );
    var d = win.graphics;
    d.backgroundColor = d.newBrush(d.BrushType.SOLID_COLOR, [0.00, 0.00, 0.00, 1]);
    win.progress.maxvalue = thumbs.length;
    var noPath = new Folder(app.document.presentationPath+ '/noPath');
    var hasPath = new Folder(app.document.presentationPath+ '/hasPath');
    var hasClip = new Folder(app.document.presentationPath+ '/hasClip');
    if(!noPath.exists)  noPath.create();
    if(!hasClip.exists)  hasClip.create();
    if(!hasPath.exists)  hasPath.create();
    for(var a in thumbs){
    win.center();
    win.show();
    win.progress.value++;
    win.layout.layout(true);
    var tempFile = thumbs[a].spec;
    var Path = false;
    var Clip = false;
    tempFile.encoding='BINARY';
    tempFile.open('r');
    var str= tempFile.read();
    tempFile.close();
    var pathTag = '8BIM\x07\xd0';
    var clippingPathTag = '8BIM\x0b\xb7';
    var workPath = '8BIM\x04\x01';
    var tagPos =str.match(pathTag);
    if(tagPos){
        Path = true;
        tagPos =str.match(clippingPathTag);
        if(tagPos){
            Clip = true;
            }
    }
    if(!Path){
        if(str.match(workPath)) Path = true;
        }
    str = null;
    if(!Path) thumbs[a].moveTo(noPath);
    if(Path && Clip)  thumbs[a].moveTo(hasClip);
    if(Path && !Clip) thumbs[a].moveTo(hasPath);
        }
    };
    

    You could point me in the direction of the script description and I'll take a look at this one.

    I hope that it will work.

  • Script to sort Images with/without clipping paths?

    I searched for a while and can not find a script that will sort a folder of images in two new folders that contain images with and without masks. Anyone have or know of a script that will do this for me? I'd be very happy. W7, PS CS5 32 and 64 bit.

    Thanks in advance!

    Andy

    Mark has made the work a lot more on what I have and it would be so worth having an eye on them.

    Mark only your layers to find together scripts?

    The script in its present form should find ways of trimming but not group layers.

    I modified the script to split the files into hasClip, hasPath and noPath of three files.

    #target bridge
     if( BridgeTalk.appName == "bridge" ) {
    clipPaths = MenuElement.create("command", "Sort Clipping Paths", "at the end of Tools","clipping");
    }
    clipPaths.onSelect = function () {
    app.document.deselectAll();
    var thumbs = app.document.getSelection("psd, tif, jpg, eps");
    var noPath = new Folder(app.document.presentationPath+ '/noPath');
    var hasPath = new Folder(app.document.presentationPath+ '/hasPath');
    var hasClip = new Folder(app.document.presentationPath+ '/hasClip');
    if(!noPath.exists)  noPath.create();
    if(!hasClip.exists)  hasClip.create();
    if(!hasPath.exists)  hasPath.create();
    for(var a in thumbs){
    var tempFile = thumbs[a].spec;
    var Path = false;
    var Clip = false;
    tempFile.encoding='BINARY';
    tempFile.open('r');
    var str= tempFile.read();
    tempFile.close();
    var pathTag = '8BIM\x07\xd0';
    var clippingPathTag = '8BIM\x0b\xb7';
    var tagPos =str.match(pathTag);
    if(tagPos){
        Path = true;
        tagPos =str.match(clippingPathTag);
        if(tagPos){
            Clip = true;
            }
    }
    str = null;
    if(!Path) thumbs[a].moveTo(noPath);
    if(Path && Clip)  thumbs[a].moveTo(hasClip);
    if(Path && !Clip) thumbs[a].moveTo(hasPath);
    }
    };
    
  • Problem with ASM diskgroup

    Hi all

    I have 2 node RAC 11 g 2 with ASM and GNS/ANALYSIS cluster is enabled in the system of OEL 5.7 on Oracle VM 3.0.3.

    For some reason I turned off my second node for 2 days and during those days, I created
    a diskgroup. I started today node 2 and now I have problem with diskgroup (main diskgroup where I kept OCR) in node 2.
    First node works fine and everything is running.
    in the second node, I have
    "Error: PROC-26: error when accessing the physical storage error ASM. But I think that my drives everything is operational, otherwise the first node is should also have a problem.
    I already disassembled discs and dropped the new disk group.

    Below, I provide related journal.
    Please help solve this problem.

    . / Thank you


    "
    [*[Grid@Rac2 ~] $ grid_check.sh*
    Check the status of the Cluster...
    **************************************************************
    RAC1:
    CRS-4537: Cluster Ready Services is online
    CRS-4529: Cluster Synchronization Services is online
    CRS-4533: Event Manager is online
    **************************************************************
    Rac2:
    CRS-4535: cannot communicate with Cluster Ready Services
    CRS-4529: Cluster Synchronization Services is online
    CRS-4533: Event Manager is online
    **************************************************************
    Check the status of the Application of node...
    RPRC-1035: could not find a CRS resources ora.cluster_vip.type for 1
    RPRC-1068: failure to request resources
    Cannot communicate with crsdPRCR-1070: could not verify if the ora.net1.network resource is registered
    Cannot communicate with crsdPRCR-1070: could not verify if the ora.gsd resource is registered
    Cannot communicate with crsdPRCR-1070: could not verify if the ora.ons resource is registered
    Cannot communicate with crsdPRCR-1070: could not verify if the ora.eons resource is registered
    Cannot communicate with crsd
    **************************************************************
    Check the status of the ASM...
    RPRC-1070: could not verify if the ora.asm resource is registered
    Cannot communicate with crsd
    **************************************************************
    Check the status of the GNS and SCAN...
    RPRC-1068: failure to request resources
    Cannot communicate with crsd
    **************************************************************
    Check the status of DNS and GNS...
    ....
    ;; SECTION OF THE ANSWER:
    Sky - scan.cluster.oracle.cloud. 7 IN a 192.168.7.102
    Sky - scan.cluster.oracle.cloud. 7 IN a 192.168.7.107
    Sky - scan.cluster.oracle.cloud. 7 IN a 192.168.7.100
    .....

    * from 2 node *.

    */U01/app/11.2.0/grid/log/Rac2/alertrac2.log*


    07:37:15.077 2009-07-14
    [ohasd (3288)] CRS-2112: the service ODE started on node rac2.
    07:37:21.712 2009-07-14
    [ohasd (3288)] CRS - 8017:location: / etc/oracle/lastgasp has 80 Advisory newspapers of reboot, 0 were announced and 0 errors
    07:37:29.609 2009-07-14
    [ohasd (3288)] CRS - 2772:Server "rac2" was awarded to 'Free' the pool.
    07:37:32.618 2009-07-14
    [ohasd (3288)] CRS-2302: failed to get profile negotiators. Error CLSGPNP_NO_DAEMON (the demon GPNPD does not work).
    07:37:35.048 2009-07-14
    [cssd (4266)] CRS - 1713:CSSD daemon is launched in cluster mode
    07:37:57.880 2009-07-14
    [cssd (4266)] CRS - 1707:Lease acquisition for node rac2 number 2 completed
    07:37:58.229 2009-07-14
    [cssd (4266)] CRS - 1605:CSSD file to vote is online: / dev/oracleasm/disks/ASMDISK2; details in u01/app/11.2.0/grid/log/rac2/cssd/ocssd.log.
    07:37:58.255 2009-07-14
    [cssd (4266)] CRS - 1605:CSSD file to vote is online: / dev/oracleasm/disks/ASMDISK1; details in u01/app/11.2.0/grid/log/rac2/cssd/ocssd.log.
    07:37:58.290 2009-07-14
    [cssd (4266)] CRS - 1605:CSSD file to vote is online: / dev/oracleasm/disks/ASMDISK0; details in u01/app/11.2.0/grid/log/rac2/cssd/ocssd.log.
    07:38:08.945 2009-07-14
    [cssd (4266)] CRS - 1601:CSSD Reconfiguration is complete. Active nodes are rac1 rac2.
    07:38:11.349 2009-07-14
    [ctssd (4578)] CRS-2407: the new Cluster Time Synchronization Service reference node is host rac1.
    07:38:11.364 2009-07-14
    [ctssd (4578)] CRS-2404: the synchronization of time of Cluster Service detects that the local time is significantly different from the average time of cluster. Details in u01/app/11.2.0/grid/log/rac2/ctssd/octssd.log.
    07:38:11.686 2009-07-14
    [ctssd (4578)] CRS-2402: the time synchronization Service Cluster abandoned in the rac2 host. Details in u01/app/11.2.0/grid/log/rac2/ctssd/octssd.log.
    07:38:11.686 2009-07-14
    [ctssd (4578)] CRS-2401: time synchronization Service Cluster started on host rac2.
    07:38:28.605 2009-07-14
    [ctssd (4650)] CRS-2407: the new Cluster Time Synchronization Service reference node is host rac1.
    07:38:28.609 2009-07-14
    [ctssd (4650)] CRS-2404: the synchronization of time of Cluster Service detects that the local time is significantly different from the average time of cluster. Details in u01/app/11.2.0/grid/log/rac2/ctssd/octssd.log.
    07:38:29.485 2009-07-14
    [ctssd (4650)] CRS-2402: the time synchronization Service Cluster abandoned in the rac2 host. Details in u01/app/11.2.0/grid/log/rac2/ctssd/octssd.log.
    07:38:29.485 2009-07-14
    [ctssd (4650)] CRS-2401: time synchronization Service Cluster started on host rac2.
    07:38:50.941 2009-07-14
    [crsd (4695)] CRS-1013: the location of the OCR in ASM disk group is inaccessible. Details in u01/app/11.2.0/grid/log/rac2/crsd/crsd.log.
    07:38:51.485 2009-07-14
    [ohasd (3288)] CRS - 2765:Resource 'ora.crsd' failed on the server "rac2.

    * repeated many times! *

    07:39:13.707 2009-07-14
    [ohasd (3288)] CRS - 2771:Maximum attempts to restart the resource 'ora.crsd '; does not restart.

    * from node 1 *.

    */U01/app/11.2.0/grid/log/RAC1/alertrac1.log*

    2012-02-14 16:21:46.630
    [cssd (4672)] CRS - 1601:CSSD Reconfiguration is complete. Active nodes are rac1 rac2.


    * from 2 node *.

    */U01/app/11.2.0/grid/log/Rac2/crsd/crsd.log*


    [clsdmt] [1112222016] listen (ADDRESS = (PROTOCOL = ipc) (KEY = rac2DBG_CRSD))
    2009-07-14 07:39:11.881: [clsdmt] [1112222016] PID of the process [4871], connkey 1
    07:39:11.881 2009-07-14: /u01/app/11.2.0/grid House host rac2 bin crs at /u01/app/11.2.0/grid/crs/init/ in the creating PID file [4871] [clsdmt] [1112222016]
    2009-07-14 07:39:11.881: [clsdmt] [1112222016] writes PID [4871] in the file [u01/app/11.2.0/grid/crs/init/rac2.pid]
    07:39:12.695 2009-07-14: [default] [4183205616] the CRS daemon startup
    07:39:12.696 2009-07-14: [default] [4183205616] ENV level Logging for Module: 1 AGENT
    07:39:12.696 2009-07-14: [default] [4183205616] ENV level Logging for Module: AGFW 0
    07:39:12.696 2009-07-14: [default] [4183205616] ENV level Logging for Module: CLSFRAME 0
    07:39:12.696 2009-07-14: [default] [4183205616] ENV level Logging for Module: CLSVER 0
    07:39:12.696 2009-07-14: [default] [4183205616] ENV level Logging for Module: CLUCLS 0
    07:39:12.696 2009-07-14: [default] [4183205616] ENV level Logging for Module: COMMCRS 0
    07:39:12.696 2009-07-14: [default] [4183205616] ENV level Logging for Module: COMMNS 0
    07:39:12.696 2009-07-14: [default] [4183205616] ENV level Logging for Module: CRSAPP 0
    07:39:12.696 2009-07-14: [default] [4183205616] ENV level Logging for Module: CRSCCL 0
    07:39:12.696 2009-07-14: [default] [4183205616] ENV level Logging for Module: CRSCEVT 0
    07:39:12.696 2009-07-14: [default] [4183205616] ENV level Logging for Module: CRSCOMM 0
    2009-07-14 07:39:12.697: [CRSD] [4183205616] ENV level Logging for Module: CRSD 0
    2009-07-14 07:39:12.697: [CRSD] [4183205616] ENV level Logging for Module: CRSEVT 0
    2009-07-14 07:39:12.697: [CRSD] [4183205616] ENV level Logging for Module: CRSMAIN 0
    2009-07-14 07:39:12.697: [CRSD] [4183205616] ENV level Logging for Module: CRSOCR 0
    2009-07-14 07:39:12.697: [CRSD] [4183205616] ENV level Logging for Module: CRSPE 0
    2009-07-14 07:39:12.697: [CRSD] [4183205616] ENV level Logging for Module: CRSPLACE 0
    2009-07-14 07:39:12.697: [CRSD] [4183205616] ENV level Logging for Module: CRSRES 0
    2009-07-14 07:39:12.697: [CRSD] [4183205616] ENV level Logging for Module: CRSRPT 0
    2009-07-14 07:39:12.697: [CRSD] [4183205616] ENV level Logging for Module: CRSRTI 0
    2009-07-14 07:39:12.697: [CRSD] [4183205616] ENV level Logging for Module: CRSSE 0
    2009-07-14 07:39:12.697: [CRSD] [4183205616] ENV level Logging for Module: CRSSEC 0
    2009-07-14 07:39:12.697: [CRSD] [4183205616] ENV level Logging for Module: CRSTIMER 0
    2009-07-14 07:39:12.697: [CRSD] [4183205616] ENV level Logging for Module: CRSUI 0
    2009-07-14 07:39:12.697: [CRSD] [4183205616] ENV level Logging for Module: CSSCLNT 0
    2009-07-14 07:39:12.697: [CRSD] [4183205616] ENV level Logging for Module: OCRAPI 1
    2009-07-14 07:39:12.697: [CRSD] [4183205616] ENV level Logging for Module: OCRASM 1
    2009-07-14 07:39:12.697: [CRSD] [4183205616] ENV level Logging for Module: OCRCAC 1
    2009-07-14 07:39:12.697: [CRSD] [4183205616] ENV level Logging for Module: OCRCLI 1
    2009-07-14 07:39:12.697: [CRSD] [4183205616] ENV level Logging for Module: OCRMAS 1
    2009-07-14 07:39:12.697: [CRSD] [4183205616] ENV level Logging for Module: OCRMSG 1
    2009-07-14 07:39:12.697: [CRSD] [4183205616] ENV level Logging for Module: OCROSD 1
    2009-07-14 07:39:12.697: [CRSD] [4183205616] ENV level Logging for Module: OCRRAW 1
    2009-07-14 07:39:12.697: [CRSD] [4183205616] ENV level Logging for Module: OCRSRV 1
    2009-07-14 07:39:12.697: [CRSD] [4183205616] ENV level Logging for Module: OCRUTL 1
    2009-07-14 07:39:12.698: [CRSD] [4183205616] ENV level Logging for Module: SuiteTes 1
    2009-07-14 07:39:12.698: [CRSD] [4183205616] ENV level Logging for Module: UiServer 0
    2009-07-14 07:39:12.698: [CRSMAIN] [4183205616] control unit of OCR
    2009-07-14 07:39:12.699: [CRSMAIN] [4183205616] connect to the CSS daemon
    2009-07-14 07:39:12.707: [CRSMAIN] [4183205616] initialization of OCR
    07:39:12.708 2009-07-14: clsu_get_private_ip_addr [OCRAPI] [4183205616]: call clsu_get_private_ip_addresses to get the first private ip address
    07:39:12.708 2009-07-14: namebufs [OCRAPI] [4183205616] check
    2009-07-14 07:39:12.708: [OCRAPI] [4183205616] control namebufs is finished
    07:39:12.709 2009-07-14: gipcCheckInitialization [GIPC] [4183205616]: no threaded incompatible possible init of [clsinet.c: 3229], original of [clsss.c: 5011]
    2009-07-14 07:39:12.710: [GPnP] [4183205616] clsgpnp_Init: [to clsgpnp0.c:404] negotiators tracelevel 3, component tracelevel 0
    2009-07-14 07:39:12.710: [GPnP] [4183205616] clsgpnp_Init: [to clsgpnp0.c:534] ' / u01/app/11.2.0/grid' as negotiators home base.
    07:39:12.717 2009-07-14: gipcCheckInitialization [GIPC] [4183205616]: no threaded incompatible possible init of [clsgpnp0.c: 680], original of [clsss.c: 5011]
    2009-07-14 07:39:12.719: [GPnP] [4183205616] clsgpnp_InitCKProviders: [to clsgpnp0.c:3866] Init negotiators local security key fatal fail if two (2) suppliers
    2009-07-14 07:39:12.719: [GPnP] [4183205616] clsgpnp_InitCKProviders: [to clsgpnp0.c:3869] Init negotiators premises security key proveders 1 of 2: leading portfolio (LSKP-FSW)
    2009-07-14 07:39:12.719: [GPnP] [4183205616] clsgpnpkwf_initwfloc: [to clsgpnpkwf.c:398] using FS Wallet location: /u01/app/11.2.0/grid/gpnp/rac2/wallets/peer/
    2009-07-14 07:39:12.719: [GPnP] [4183205616] clsgpnp_InitCKProviders: [to clsgpnp0.c:3891] Init local negotiators main provider of security 1 of 2: leading portfolio (LSKP-FSW) OK
    2009-07-14 07:39:12.719: [GPnP] [4183205616] clsgpnp_InitCKProviders: [to clsgpnp0.c:3897] Init negotiators premises security key proveders 2 of 2: portfolio OLR (RSC-CLSW-LSKP)
    [CLWAL] clsw_Initialize [4183205616]: OLR initlevel [30000]
    2009-07-14 07:39:12.723: [GPnP] [4183205616] clsgpnp_InitCKProviders: [to clsgpnp0.c:3919] Init local negotiators main security provider 2 of 2: portfolio OLR (LSKP-CLSW-RSC) OK
    2009-07-14 07:39:12.723: [GPnP] [4183205616] clsgpnp_getCK: [to clsgpnp0.c:1950] < Get negotiators security keys (cover) for id: 1, typ; 7 (2 suppliers - deadly failure)
    2009-07-14 07:39:12.723: [GPnP] [4183205616] clsgpnpkwf_getWalletPath: [clsgpnpkwf.c:498] req_id = 1 ck_prov_id = 1 path of portfolio: /u01/app/11.2.0/grid/gpnp/rac2/wallets/peer/
    2009-07-14 07:39:12.736: [GPnP] [4183205616] clsgpnpwu_walletfopen: [clsgpnpwu.c:494] portfolio open SSO: ' / u01/app/11.2.0/grid/gpnp/rac2/wallets/peer/cwallet.sso'
    2009-07-14 07:39:12.736: [GPnP] [4183205616] clsgpnp_getCK: [to clsgpnp0.c:1965] result: (0) CLSGPNP_OK. Get wallet - 1 of 2 provider negotiators (LSKP-FSW (1))
    2009-07-14 07:39:12.736: [GPnP] [4183205616] clsgpnp_getCK: [clsgpnp0.c:1982] obtained security keys (cover) negotiators. >
    2009-07-14 07:39:12.740: [GPnP] [4183205616] clsgpnp_getCK: [to clsgpnp0.c:1950] < Get negotiators security keys (cover) for id: 1, typ; 4. (2 suppliers - deadly failure)
    2009-07-14 07:39:12.740: [GPnP] [4183205616] clsgpnpkwf_getWalletPath: [clsgpnpkwf.c:498] req_id = 1 ck_prov_id = 1 path of portfolio: /u01/app/11.2.0/grid/gpnp/rac2/wallets/peer/
    2009-07-14 07:39:12.750: [GPnP] [4183205616] clsgpnpwu_walletfopen: [clsgpnpwu.c:494] portfolio open SSO: ' / u01/app/11.2.0/grid/gpnp/rac2/wallets/peer/cwallet.sso'
    2009-07-14 07:39:12.751: [GPnP] [4183205616] clsgpnp_getCK: [to clsgpnp0.c:1965] result: (0) CLSGPNP_OK. Get wallet - 1 of 2 provider negotiators (LSKP-FSW (1))
    2009-07-14 07:39:12.751: [GPnP] [4183205616] clsgpnp_getCK: [clsgpnp0.c:1982] obtained security keys (cover) negotiators. >
    2009-07-14 07:39:12.751: [GPnP] [4183205616] clsgpnp_Init: [to clsgpnp0.c:837] client GPnP pid = 4871, tl = 3, f = 0
    07:39:12.763 2009-07-14: gipcShutdownF [GIPCXCPT] [4183205616]: jumping stop, take into account 2, [clsinet.c: 1732], ret gipcretSuccess (0)
    07:39:12.765 2009-07-14: gipcShutdownF [GIPCXCPT] [4183205616]: jumping stop, count 1, of [clsgpnp0.c: 1021], ret gipcretSuccess (0)
    07:39:13.409 2009-07-14: proprasmo [OCRASM] [4183205616]: error in the file open/create in dg [ODATA]
    [OCRASM] [4183205616] ESL: ESL: Cat = 7, opn = kgfoAl06, dep = 15077, loc = kgfokge
    ORA-15077: could not locate instance ASM serving a required diskgroup
    2009-07-14 07:39:13.411: [OCRASM] [4183205616] proprasmo: kgfoCheckMount returned [7]
    07:39:13.411 2009-07-14: proprasmo [OCRASM] [4183205616]: the ASM instance is down
    2009-07-14 07:39:13.423: proprioo [OCRRAW] [4183205616]: cannot open [+ ODATA]. Proprasmo() returned with [26]. Mark as UNAVAILABLE.
    2009-07-14 07:39:13.423: [OCRRAW] [4183205616] proprioo: No. OCR/OLR peripheral can be used
    2009-07-14 07:39:13.423: [OCRASM] [4183205616] proprasmcl: asmhandle is NULL
    07:39:13.423 2009-07-14: proprinit [OCRRAW] [4183205616]: could not open device gross
    2009-07-14 07:39:13.423: [OCRASM] [4183205616] proprasmcl: asmhandle is NULL
    2009-07-14 07:39:13.423: [OCRAPI] [4183205616] a_init:16! : Backend init failed: [26]
    2009-07-14 07:39:13.424: failed to init for context OCR [CRSOCR] [4183205616]. Error: PROC-26: access to storage error error ASM physics [ALS: Cat = 7, opn = kgfoAl06, dep = 15077, loc = kgfokge]
    ORA-15077: could not locate instance ASM serving a required diskgroup
    ] [7]
    2009-07-14 07:39:13.424: [CRSD] [4183205616] [PANIC] CRSD out: cannot init OCR, code: 26
    2009-07-14 07:39:13.424: [CRSD] [4183205616] fact.

    Hello

    So the purpose don't you have any ideas on this situation?
    Is this situation that's happened because I added the new diskgroup when my second node is turned off?
    or

    It is only because of data and time?

    Yes... I have idea about it.

    Once I did the test with ORACLE Clusterware on VMWARE. The same situation that happens when I rebooted the VM... Date and time was wrong and clusterware fails at startup.
    The reason behind it was the former configuration (date) VM take and not synchronized time of VM - RAC with host server where VM, due time synchronization has been disabled.
    CTSS does not work if the difference between the local time and the time on the reference node was too, so the "CRS-02411" error will be raised.

    CRS-02411: time synchronization services Cluster will take much time to perform the synchronization of the time as local time is significantly different from the average cluster.
    Cause: The difference between the local time and the time on the reference node was too to be synchronized over a short period.
    Action: (Optional) stop and restart the Oracle Clusterware on this node to instantly synchronize the time with the reference node.

    As you use Oracle VM, you should check how Oracle VM time synchronization is configured.

    Kind regards
    Levi Pereira

  • How to use FTPS using the FTP adapter

    I am trying to create a BPEL process using SOA 11 g 11.1.1.4, that will put the file on the remote site using the ftp adapter. I created JNDI correctly and using portfolio.
    useFtps = True
    walletLocation = correct path of portfolio created in Oracle HTTP Server (OHS)
    walletPassword = walletPassword
    Host = ipaddress
    username = myUsername
    Password = myPassword

    For all this, I followed http://download.oracle.com/docs/cd/E17904_01/integration.1111/e10231/adptr_file.htm#BABEBGGD

    Now, whenever I try to test this BPEL process it gives me the error:

    "Exception occurred during invocation of the JCA binding:" JCA binding run reference operations 'Put' failure due to: error in establishing session SSL. " Error in the SSL session establishment. Impossible to establish the SSL session to the control channel. Response string: 530 please login with USER and pass response Code: 530) Please correct the SSL configuration. ". The called JCA adapter threw an exception of resource. Please review the error message above carefully to determine a resolution.

    Any suggestion or resolutions are welcome.

    Thank you!!

    Concerning
    Yogesh

    Hello

    When you configure the connection for the FTP adapter factory in Admin Console, provide the following values for attributes such as the host name, user name, password, port and the path of remote as location when
    you want to save the file to remote server, for example, ftpAbsolutePathBegin. Please fill out this
    attribute with the path like/soa/ftp/file (example path). If you write to a remote FTP server you must create a factory for connections for this as shown above.

    Please try this and let me know...

    Thank you
    N

  • [InDesign c# Script] Problem with textframe.place (imageName)

    Hello everyboy.


    I start with InDesign scripting in c#, and the documentation is very poor. I have a problem and I can't find the solution.


    I place an image in a textframe on the page of my document.

    I create my textframe with no problems:

    myDocument.Layers.Add ();
    InDesign.Layer lastLayer = myDocument.Layers [myDocument.Layers.Count (InDesign.Layer)];
    InDesign.TextFrame myPicture = myPage.TextFrames.Add (lastLayer, InDesign.idLocationOptions.idUnknown, myPage);

    myPicture.GeometricBounds = new string [4] {myY, myX, myY2, myX2};

    Then I try to place my picture, but I can't find what kind of object is returned by. Place the method:

    First test:

    InDesign.Graphics myGraphic = (InDesign.Graphic) myPicture.Place (path, false);

    And I got this error:

    {System.InvalidCastException: unable to cast COM type object 'System.__ComObject' interface type 'InDesign.Graphics'.} This operation failed because the QueryInterface call on the COM component for the interface with IID '{C85A4AB3-9492-4C40-8A7B-F8305706C8B8}' failed due to the following error: no such interface supported (Exception from HRESULT: 0 x 80004002 (E_NOINTERFACE)).
    to Service.createPhotograph (XmlNode photo, Page myPage) in c:\Documents and Settings\melaniep\My Documents\Visual Studio 2005\WebSites\WebSite6\App_Code\Service.cs:line 204}

    And I saw this tutorial on javascript to place images at http://www.Adobe.com/devnet/InDesign/PDFs/indesigncs4_scriptingtutorial.PDF


    Display a standard dialog box open the file to select a graphic file.
    var myGraphicFile is File.openDialog ("choose a graphic file");.
    If you have selected a graphics file, and if you didn't press Cancel,
    Place the graphic file on the page.
    If ((myGraphicFile! = "") & & (myGraphicFile!) (= null)) {}
    var myGraphic = myDocument.pages.item (0) .place (myGraphicFile);
    Since you can place multiple graphics at once, the place method
    Returns an array. For the graph you have placed, get the first
    element of the array (beginning of JavaScript arrays with element 0).
    myGraphic = myGraphic [0];

    So I tried:

    InDesign.Graphics myGraphics = myPicture.Place (InDesign.Graphics) (path, false);
    InDesign.Graphic = (InDesign.Graphic) myGraphics myGraphic [0];

    But I got the same error.

    Someone has an idea? I'm really lost, and I don't know what to do :'(

    Another small issue.

    My photo is smaller than my textFrame.

    And I want my picture fits the texframe.

    MyGraphic.HorizontalScale = widthOfTextFrame

    MyGraphic.VerticalScale = heightOfTextFrame

    Not working? Or am I in the wrong way?

    Thank you very much (and sorry for my bad English, I'm french )

    To resize the image, look at "suitable" and fitOptions.

    Bob

  • How to specify "device = true/false" what URL's path and querystring

    e.g. http://myserver.com/path/my.php?id=xxxxxx&name=xxxxxxxI have been read many examples on the addition of "device = true/false" or "interface = wifi" based in the current connection service. But all these examples assume that doesn't URL {t have path or from a query string:}

    for example http://myserver.com;device=true

    I need access to a server where the resources are way and I set up via QueryString

    for example http://myserver.com/path/my.php?id=xxxxxx&name=xxxxxxx

    I've been adds "device = true" at the end of the URL and at the end of the hostname

    for example http://myserver.com/path/my.php?id=xxxxxx&name=xxxxxxx;device=true

    for example http://myserver.com;device=true/path/my.php?id=xxxxxx&name=xxxxxxx

    and none of these works. Is it possible to specify when the URL path and use querystring

    I'm working with JDE Plugin 4.5, Ecliipse 3.4 for Curve 8310 and 9000 "BOLD"

    Thank you

    f

    You always add the connection at the end of the full URL string, regardless of what contains the URL.

    The connection string is stripped by the treatment of Blackberry so that your host be confused by it.  The connectin string is used by the BlackBerry to determine what BlackBerry connection path will be used for the connection.

    BTW, this is '; '. deviceside = true/false", not"peripheral", which could explain part of your problem.

    I think this article explains all the possible connection strings:

    What - in different ways to establish an HTTP connection or socket

    Article number: DB-00396

    http://www.BlackBerry.com/knowledgecenterpublic/livelink.exe/fetch/2000/348583/800451/800563/What_Is...

    For more information, I recommend the section required reading of this thread:

    http://supportforums.BlackBerry.com/T5/Java-development/connecting-your-BlackBerry-http-and-socket-c...

  • Subject: view_source.editor.path game the user config does not work.

    Until recently, I had the object of work, but recently firefox option
    apparently changed something for the desired function no longer works.
    What should I do to make it work again?
    Comments: config I changed view_source.editor.path so that
    He has "the user's game" and "string" to/usr/bin/kwrite
    who is the editor that I always used to modify the source code
    for my websites and then refresh to display the results.

    Now, however, you have changed something so that I
    Works of Set and specified is no longer. Why? And what I have to do
    to get this working again?

    Hello, check to see if for some reason any view_source.editor.external is the default false, it must be true to the view_source.editor.path to work.

    Thank you

  • Error attribute indicating the Django setting should be DEBUG = TRUE when she is currently DEBUG = FALSE. I don't know how to solve this problem. Need help change affecting please!

    I'm trying to access an online simulation via MyMIS Lab of Pearson for a class online. I was using this simulation a couple of days, but when I logged on this morning, the simulation does not open. I copy and paste the error message that appears when I try to open it. Basically, it reads "you see this error because you have DEBUG = True in your file settings to Django. Change False and Django will display a 500 standard page. I have no idea what Django settings are and have studied how to change the setting, but I'm not familiar with this at all. Any help would be greatly appreciated so I can get my homework done! Thank you!!!

    AttributeError at /simLaunch/launch/
    
    'Settings' object has no attribute 'XLSIMS_LAUNCH_URL'
    
    Request Method: 	POST
    Request URL: 	http://econdip.pearsoncmg.com/xlsim/simLaunch/launch/
    Django Version: 	1.5.2
    Exception Type: 	AttributeError
    Exception Value: 	
    
    'Settings' object has no attribute 'XLSIMS_LAUNCH_URL'
    
    Exception Location: 	/vh/docroots/econdip.pearsoncmg.com/prod/virtualenv/lib/python2.6/site-packages/django/conf/__init__.py in __getattr__, line 54
    Python Executable: 	/usr/bin/python
    Python Version: 	2.6.6
    Python Path: 	
    
    ['/vh/docroots/econdip.pearsoncmg.com/prod/virtualenv/lib/python2.6/site-packages',
     '/usr/lib64/python26.zip',
     '/usr/lib64/python2.6',
     '/usr/lib64/python2.6/plat-linux2',
     '/usr/lib64/python2.6/lib-tk',
     '/usr/lib64/python2.6/lib-old',
     '/usr/lib64/python2.6/lib-dynload',
     '/usr/lib64/python2.6/site-packages',
     '/usr/lib64/python2.6/site-packages/gtk-2.0',
     '/usr/lib/python2.6/site-packages',
     '/usr/lib/python2.6/site-packages/setuptools-0.6c11-py2.6.egg-info',
     '/vh/docroots/econdip.pearsoncmg.com/prod/server/glservice']
    
    Server time: 	Sat, 30 Aug 2014 14:59:46 -0500
    
    Environment:
    
    Request Method: POST
    Request URL: http://econdip.pearsoncmg.com/xlsim/simLaunch/launch/
    
    Django Version: 1.5.2
    Python Version: 2.6.6
    Installed Applications:
    ('django.contrib.auth',
     'django.contrib.contenttypes',
     'django.contrib.sessions',
     'django.contrib.sites',
     'django.contrib.messages',
     'django.contrib.staticfiles',
     'django.contrib.admin',
     'gldata',
     'econ.ca',
     'econ.ue',
     'gllaunch',
     'datacapture',
     'xlsims')
    Installed Middleware:
    ('django.middleware.common.CommonMiddleware',
     'django.contrib.sessions.middleware.SessionMiddleware',
     'django.middleware.csrf.CsrfViewMiddleware',
     'django.contrib.auth.middleware.AuthenticationMiddleware',
     'django.contrib.messages.middleware.MessageMiddleware')
    
    Traceback:
    File "/vh/docroots/econdip.pearsoncmg.com/prod/virtualenv/lib/python2.6/site-packages/django/core/handlers/base.py" in get_response
      115.                         response = callback(request, *callback_args, **callback_kwargs)
    File "/vh/docroots/econdip.pearsoncmg.com/prod/virtualenv/lib/python2.6/site-packages/django/views/decorators/csrf.py" in wrapped_view
      77.         return view_func(*args, **kwargs)
    File "/vh/docroots/econdip.pearsoncmg.com/prod/server/glservice/xlsims/views.py" in launchSim
      23.     if TPIUtils.has_valid_signature(launch_data, url=settings.XLSIMS_LAUNCH_URL, key='bphsc2014'):
    File "/vh/docroots/econdip.pearsoncmg.com/prod/virtualenv/lib/python2.6/site-packages/django/conf/__init__.py" in __getattr__
      54.         return getattr(self._wrapped, name)

    It's a problem with a Python script that runs on the server.
    The site Web needs to solve this problem.
    If the problem persists then contact them by e-mail.

    You can try to clear the cache and delete cookies from this Web site.

    "Clear the Cache":

    • Firefox > Preferences > advanced > network > content caching Web: 'clear now '.

    'Delete Cookies' sites causing problems:

    • Firefox > Preferences > privacy > "Use the custom settings for history" > Cookies: "show the Cookies".
  • I can't find the "plugin.expose_full_path" preference in the ' subject: config "list and full path is activated!

    I've tried to get rid of some plugins/extensions owrrisome and wanted to show their full path in ' on: plugins ", so went to set the preference of"plugin.expose_full_path"the ' topic: config" list to 'true '. But, I couldn't find there, and the full path seems already displayed in "subject: plugins. What worries me, is that you are supposed to disable the full path when you are finished, because it creates a security risk. So why don't I see the option "plugin.expose_full_path" and why the full path is activated?

    Copied from:
    http://KB.mozillazine.org/about:plugins

    Location of the plugin file:

    • Mozilla 20 and below: To display the full path to the plugin instead of just the file name (for example, in Firefox 20), type Subject: config in the address bar and press the Enter key. Find the plugin.expose_full_path preference and change the value true (by double-clicking on the name of the preference will switch the setting). Warning: Expose the location plugin can have repercussions on safety on some systems. It is best to reset the preference to "false" by default, when you are finished. 1
    • Mozilla 21: There is no way to display the full path of the file in the topic: plugins list. Another way to find the location of the plugin file (for example, in Firefox 21) must inspect the contents of the "pluginreg.dat" file, located in the profile to your Mozilla application folder.
    • Mozilla 22 and above: From version 22 (for example, Firefox 22) an extra row "path:" is included in the on: plugins list, which displays the full path of the file for all plugins. (bug 661961).
  • I'm doing a script that takes a list of e-mail from a text file and then allow me to select a save as a string. I found some ways to get the path of the file, but I'm in check by pulling the list

    I found some ways to get the path of the file, but I am defeated by pulling the list from that. the function of the path get gives me the path as "Macintosh Users:: Documents: extractedb.txt (myUsername).

    What I can't understand is how to get a dialog box to display a list that represents the content in the text file, I need to change the contents of the text file, I need the box to show me what I chose and I want to save my selection as a single string.
    e '.

    example of extractedb.txt information:

    [email protected]

    [email protected]

    [email protected]

    * has a random number of emails as well *.

    I want this is to pull those emails from the text file and turn them into a list so I can get to be a selection in my dialog box.

    Any help would be great = D

    Assuming you have a text file with your example e-mail addresses, the following AppleScript will read this file in a list (mf_List) and then use this list as input to choose among the list. Because multiple selection is allowed (control button), the output is sent to a list (sel_addr). We check if the Cancel button was pressed by testing for false and if this condition is met, we the script error.  Based on a single or multiple list item content of the list, display accordingly.

    game of mf to ((path to the folder as text) & "mail_list.txt")

    the value mf_List to {}

    the value sel_addr to {}

    the value mf_List to paragraphs of (read file mf)

    the value sel_addr to (choose from the list mf_List with title ¬

    ('Mail list' with multiple selections allowed without empty selection allowed)

    If sel_addr is equal to false then

    Error number-128

    return

    end if

    If length of sel_addr is equal to 1 then

    sel_addr display dialog box as text

    on the other

    the value Point to the text of TID to AppleScript delimiters

    the value Point text in AppleScript return delimiters

    display the dialog box elements of sel_addr in the text

    the value Text of point AppleScript delimiters to TID

    end if

    return

  • AppleScript to obtain the physical path of a picture in the Yosemite photos app

    In iPhoto, we had this nice XML file with the metadata for each image in iPhoto.

    In the Photos of Yosemite application, there is no file.  So, I wrote an Applescript script that loops on each folder, subfolder, album, etc. and write the details to an XML file.

    When code loops, I have:

    Repeat with img in each media element of myContainer

    and I get these details:

    • file name: 2011-07-10 020. JPG
    • Keywords: 2011-07-10
    • name: missing value
    • Description:
    • favorite: false
    • Date: Monday, July 4, 2011 at 12:34:30
    • ID: 9XCpq6SzSD666TwlCHW8HA
    • height: 3240
    • Width: 4320
    • altitude: missing value
    • Location: valuemissing missing value

    But nothing in these attributes tells me where the actual image file is on the hard drive.  Anybody know a way in AppleScript to obtain the physical path of a picture in Yosemite photos app?

    Thank you!

    There are two categories of images within a library of Photos: 1) copied - no external location information stored (by default) and image is stored in the photo library and 2) referenced - only the pointers to the location of external images are stored in the photo library, and location information to real image from the file menu and context menu as file referenced in the Finder menu item slide show can be found.

    In pictures preferences: general Board, there is an import: box - copy items to the photo library. Apparently, this option is enabled by default, as it was the once Photos migrate my iPhoto library. It also means that I don't have category 2 above and the menu items are gray, because there is no location of external file stored in the photo library.

    More on that here on different application.

  • path of excel file

    Hello world

    I am writing and reading data to an Excel (see code) file and it works but I need to specify the path of the script, and if I want to change the file I need to change the path of the code.

    I would like to create a window that appears and prompts the user to choose the excel file it wants to work, copy the path and replace

    'C:\Users\Public\Documents\National Instruments\DIAdem 2012\Documents\Constant Radius\USED\Test.xlsx' by this way.

    I hope someone can give me a hand with this...

    Thank you

    Leo

    Dim Excel, Excel Set = New Excel.Visible file = TRUE Excel.Workbooks.Open("C:\Users\Public\Documents\National Instruments\DIAdem 2012\Documents\Constant Radius\USED\Test.xlsx") call a = Excel.ActiveSheet.Cells (1,1). Value Excel.ActiveSheet.Cells (1,4). Value = RV1 (1) Excel.ActiveSheet.Cells (2,4). Value = RV1 (2) Excel.ActiveSheet.Cells (3,4). Value = RV1 (3) Excel.ActiveSheet.Cells (4.4). Value = RV1 (4) Excel.ActiveSheet.Cells (5.4). Value = RV1 (5) Excel.ActiveSheet.Cells (6.4). Value = RV1 (6) Excel.ActiveSheet.Cells (7.4). Value = RV1 (8) Excel.ActiveSheet.Parent.Saved = FALSE Excel.Quit = Nothing Set Excel

    Hi Leillo,

    I think that's what you're looking for:

    DlgTitle = "insert a file dialog title here...". »
    StartPath = ProgramDrv & "Examples\Data\".
    FileExts = ' *.» XLSX, *. XLSX»
    FileExts = "Excel files *.» XLSX; *. XLS '.
    Call FileNameGet ("All", "FileRead", StartPath, FileExts, "No", True, DlgTitle)
    IF DlgState = "IDCancel" THEN call AutoQuit
    DataFilePath = FileDlgFileName
    MsgBox DataFilePath

    Brad Turpin

    Tiara Product Support Engineer

    National Instruments

  • NaN/PathRefnum? function unnecessary production responds to path, Refnum

    I found similar topics, but not quite the same thing, AFAICT.

    I'm just trying to see if an INI file exists, so I created the following excerpt:

    I also created a small file, put in my C:\ directory, which I have attached here.

    When I run the program of LV with C:\test.ini, my indicators come out as NaN/Path? : false, NaN/Refnum? : true

    I tried to interpret as (1) a path valid (this file exists) and (2) a refnum does not exist (even if the refnum came from a sub - VI provided by LV).

    I then replaced by control (find file) C:\test.in (sliced final 'i') and the two indicators gave me the same results. That really impressed my first interpretation, and I can't come up with anything else that makes sense.

    Thus, for paths and refnums, what happens here, if anything?

    I saw that the second test threw an error of the Sub - VI 'Open Data of Config', so I can use it for my test, but I would like to know if the NaN... function is actually good for something other than numbers. If this isn't the case, IMHO LV should change its designation on the pallet.

    Cameron

    That you use in a puzzling oddity of LabVIEW refnums. To check if a configuration file refnum is valid, you must not use "a given Config Refnum.vi" in the range of screw Configuration file. The ' NaN/path/Refnum?' function works only for refnum types that are built-in LabVIEW, such as queues, TCP sockets and file references. The screw configuration file are built in LabVIEW, LabVIEW rather than integrated and refnums they use are not 'real' refnums in terms of LabVIEW, they are just data wrapped as reference datalog (something for the creation of unique types of pseudo-refnum). You will see several other pallets which also includes their own functions in order to check whether a refnum is valid, such as pallets of semaphores and appointment management.

  • How to find the path to the project file programmatically

    I'm trying to find a way to get the path to the project file in the development environment.

    I have attached a small project in LV 8.5.1 with a project file, a library file and the VI. I can get the path to the file library, but not to the project. This channel is still .

    I know that the problem exists in LV 8.6.1f1 but I didn't test in LV 2009.

    I am aware that in reality he could there have more nested levels of the library files, but it doesn't matter when this simple example does not work.

    If this is related to the problem I initially created the library by using the file > new... and later, I created the project and added to the library.

    Hi Waldemar,

    Here is a small piece of code and a related link.

    http://forums.NI.com/NI/board/message?board.ID=170&message.ID=220269&requireLogin=false

    I hope this helps.

    Kind regards

    N. Ralf

    Engineering applications

    OR Germany

    PS: Don't forget the congratulations. )))))

Maybe you are looking for