Client Directory Info Purge Process

I understand on the host file DSLDAPv3PlugInConfig.plist has the listing of all the available OD servers. So let's say my environment has 1 Master and 2 Replicas. All 3 are listed as available OD servers, let's say 1 replica fails and is replaced by a 3rd replica with a new IP. How does the now old IP get removed from this file and the new one gets added I assume as part of a normal process. Can anyone explain this process to me?

have you had a look at the wiki?
http://wiki.novell.com/index.php/Gro...Habits#Windows
T

Similar Messages

  • Problem with AV DWH refresh and purge process

    We are working on a POC for a client and our env is Oracle Linux, Oracle 11g as Source with SYS.AUD$ auditing, Audit vault 10.2.3.1 and Agent all configured in a single server as of now. The problem I am facing is
    1) The load process is really weard sometimes it loads and many times it runs but the reports does not show any data.
    I tried to have a look into the procedures in AVSYS schsma, but every thing is encrypted. Do any have any idea does the server get a flat file as audit data from AUD$ or the data is directly inserted into the a server tables within AVSYS schema
    2) The purge process is not working. I was trying to purge the data whicj loaded last week, but when I run the purge record form AV Web console the result is big ?, nothing start.
    Do any one have any idea of the issue.
    Regards

    Please provide sufficient information for someone to know what you are doing.
    "The load process is really weard sometimes it loads and many times it runs but the reports does not show any data."
    Is meaningless.
    What is weird? Is it the load process in your production database? How does this relate to Audit Vault? Loading using what technology? Are we supposed to guess SQL*Loader or DataPump or Transportable Tablespaces or something else entirely? What doesn't show any data? Prod? AUD$? Audit Vault?
    You need to take us through every step and what you are checking and how.
    http://www.battleagainstanyguess.com/baag/

  • How to do Local (Client) Directory/File changes?

    Ok, here's one I could not find on the net nor these forums..
    How can I have a CFM page that will list all files in a
    client's directory ... basically, I am looking for a directory
    watcher/listener for a client's directory using cold fusion ..
    Any hints?

    ShannaraAlaska wrote:
    > Any hints?
    Recognize the difference between a server and a client in a
    server/client system and then one does not ask questions like
    "how can
    my server sneak in and spy on the clients system against all
    security
    models designed to protect them from this violation."
    Short answer: NO -- you can not do this. [And this is a good
    thing.]
    A little longer answer. If you are on a well defined network
    and the
    server and the client machines are on the same domain and you
    want to
    define a domain user that has permissions to read the desired
    directories across the network. You could configure CF to run
    as this
    user and use UNC paths to access the client machine.
    Otherwise, no there is no way for ColdFusion, or any server
    application,
    to read or watch a clients directory. Just imagine the havoc
    if every
    website you visited could start snooping around well known
    directories
    on your computer.

  • How to check if the file already exists in the client directory

    Hi all.
    I'm on devsuite 10g. I'm using webutil to download files from DB using webutil function db_to_client.
    What I need is to check if the file already exists in the client directory and if yes to display a message to ask the user if he wants to overwrite or no. How can I make this???
    Here is the code that I'm using to download the file.
    Thanks all for the collaboration.
    Fabrizio
    declare
    file_path varchar2(2000) := null;
    BEGIN
    /** I ask where saving the file on the client machine **/
    file_path:= webutil_file.file_selection_dialog
    (directory_name => null,
    file_name => :bin_docs.name,
    file_filter => '',
    title => 'Saving file',
    dialog_type => save_file, --save_file
    select_file => TRUE);
    /** I download the file from DB to client **/
    if webutil_file_transfer.DB_To_Client_With_Progress
    ( file_path ,
    'BIN_DOCS',
    'DOC' ,
    'doc_id = '||:bin_docs.doc_id,
    'Downloading file',
    ' '||:bin_docs.name) then
    msg_alert('Download del file avvenuto con successo','I',false);
    else
    msg_alert('Si è verificato il seguente errore in fase di download '||SQLERRM,'I',false);
    end if;
    end;

    How about something like the below:
    Note: I have a yes/no alert to asking if they want to over-write the existing file.
    DECLARE
    file_path VARCHAR2(2000) := null;
    over_write BOOLEAN := TRUE;
    BEGIN
    /** I ask where saving the file on the client machine **/
    file_path:= webutil_file.file_selection_dialog
    (directory_name => null,
    file_name => :bin_docs.name,
    file_filter => '',
    title => 'Saving file',
    dialog_type => save_file, --save_file
    select_file => TRUE);
    IF webutil.file_exists(file_path) THEN
    /** check a file by the same name exists in the selected directory **/
    IF show_alert('Ask_overright') != alert_button1 THEN
    /** If we say no then set over_write value to false **/
    over_write := FALSE;
    END IF;
    END IF;
    IF over_write THEN
    /** I download the file from DB to client **/
    IF webutil_file_transfer.DB_To_Client_With_Progress
    ( file_path ,
    'BIN_DOCS',
    'DOC' ,
    'doc_id = '||:bin_docs.doc_id,
    'Downloading file',
    ' '||:bin_docs.name) then
    msg_alert('Download del file avvenuto con successo','I',false);
    ELSE
    msg_alert('Si è verificato il seguente errore in fase di'
    ||' download '||SQLERRM,'I',false);
    END IF
    END IF;
    END;
    cheers
    Q

  • Query Microsoft Active Directory info from PL/SQL

    Hi,
    We are developping an APEX application that would need to query information about the enterprise computers defined on the Active directory. Anyone knows it would be possible acces to this info from PL/SQL?
    I ahve read that exists a package that enables manipulate COM objectes (http://download-east.oracle.com/docs/cd/B10501_01/win.920/a95499/ch3core.htm#1006978)
    and I know that they exists COM interfases to Active Diretory (they are named Active Directory Service Interfaces (ADSI) ) but I have no idea if its possible to succesfully merge these 2 concepts.
    Has anyone tried to query Active directory info from PL/SQL using COM components or any other method?
    Thanks by advance

    Why not use DBMS_LDAP? That is what APEX's (built-in) LDAP authentication module uses. And it works just fine (doing a bind call) against a MS Active Directory Server.
    As for mucking about with COM from Oracle.. me no like. That ties your Oracle and PL/SQL to a specific operating system and you loose of the biggest advantages of Oracle - portability. Worse, you are at the mercy of the o/s vendor sticking to whatever standards used. In the case of Microsoft, that means mostly proprietary "standards" and very likely changes in those "standards" with every new version of the o/s - which will break your software. (personal experience talking)
    Rather let Oracle deal with the o/s complexities and restrict your code to using Oracle features only, as far as possible.

  • File/Directory Info

    my code is causing an issue here...using the File/Directory Info, when no file is found, i want to ignore it and not have the pop up...
    can someone please help me..a diagram would be greatly appreciated..
    i dont know how to fix it because i really don't understand how this VI give out the error, and I dont have very well understanding of the simple error handler...
    i was going through the forum and found this infomation that is useful
    "To avoid the pop-ups all you need to do is wire the error cluster and handle the error. In this case, check the error number.
    If it is an error you want to ignore, pass an empty error cluster on. If you don't want to ignore it, pass the original error cluster.""
    thanks in advance..
    Best regards,
    Krispiekream

    duplicate post
    Please keep discussion to original thread so people know what's being discussed

  • Essbase Administration Console error "failed to create client directory to write error file"

    I am getting the following error while trying to load data using EAS v11.1.2.3
    "failed to create client directory to write error file"
    Any known root cause for this.

    Check the default error directory while loading data? The error file in 11.1.2.2 points to C:\Oracle\Middleware\EPMSystem11R1\products\Essbase\eas\client, which is already on the system where EAS is installed.
    If the folder is not there then it is a bug, however you can change it to an existing path.
    Regards
    Celvin
    http://www.orahyplabs.com

  • Should clients of long-running processes wait for a response?

    I am a bit confused by the worklist tutorial where the client waits around for
    a response from the worklist process that blocks on human input. This may be okay
    for the sample application, but is it a realistic scenario? Have you designed
    any practical worklist processes this way? I would have thought that the client
    of a worklist process would simply trigger the process and go away. Eventually
    when the human involved in the process would take some action, the process would
    then, for example, send a message to some application. What do you think? I would
    be interested in your opinions and perhaps some real examples of how you are using
    worklists.
    Thanks.
    P.S. Is it even possible for a worklist client to trigger the process and go away?
    Would the process die because the client has gone out of scope?

    I agree with your comments. In being honest as well, we unfortunately do have SRs that get behind or missed. It's very frustrating on our side as well when we have these come up. We have implemented a number of technologies and also human touch to help us catch these and continue to focus on ways to overcome these delays. I know it's frustrating for you as well.
    Our customer satisfaction is very high and actually continues to increase each Qtr. Our data shows us our three key satisfaction areas are; speed of response, speed of resolution and followup.
    Chat support helps us in response time, but sometimes may hinder us in resolution times. Especially with more complex issues. Our goals were not to totally replace the phones with chats, but to use chat to allow us to respond more quickly, which it has done. We're now focusing our folks to realize it's still ok to call you when the Chat is hindering resolution and it would be quicker to talk live about the issue.
    We resolve over half of the SRs on the first day. We continue to focus on speeding up the resolution of those that go beyond the first day. A couple things we've implemented are we call you back at least every 2 days when the SR is in Novell's court and at least every 5 days when it's in your court. We've also implemented timed escalation for SRs and are now looking at also escalating when progress is not being made after a certain number of days (rather that just time open). The goal is to get you in the hands of the right person asap to speed up the resolution time.
    We're also having Managers call you on more and more SRs before being closed to double check your satisfaction with the SR.
    Our dream is to never have you need to ask us for attention on a SR. We continue to make progress on it.
    I look forward to your thoughts and other ideas you may have to help us improve,
    -Todd
    Todd Abney
    Technical Support Director
    Novell

  • File/directory info behaviour

    Hi,
    I'm having an issue with the file/directory info VI (and more file I/O VI's) in labview 7.1.1.
    They produce a popup error message by themselves which I need to suppress for my own error handling.
    Any solution for this ?
    Regards,
    Marcel Janssen

    The automatic error pop-up is not specific to those VIs, but is a general LV behaviour. Basically, each node that has an error and doesn't have its error terminal wired into something causes these pop-up to appear. This can be disabled in the options menu.
    However, I would strongly advise against that - error handling is very important. To avoid the pop-ups all you need to do is wire the error cluster and handle the error. In this case, check the error number. If it is an error you want to ignore, pass an empty error cluster on. If you don't want to ignore it, pass the original error cluster.
    To sum it up - always use the error wires to pass the error data and handle the errors properly. It will allow you to know where the error is in case you have it. Leave auto-error-handling on just in case you forgot to wire an error cluster somewhere.
    Try to take over the world!

  • Client fileglobal access by process model

    I have the same question as posted in knowledge base article:
    http://digital.ni.com/public.nsf/allkb/f970e072b4b41ef786256e30007505b2
    However, the stated solution in the knowledge based article appears to be unavailable for TestStand1.03.
    Basically I'm trying to access the fileglobals of a client from within the process model.  The only appearent path is the RunState.ProcessModelClient.Data.FileGlobalDefaults but this is just the default states of the client's variables.  I need the actual runtime copies.
    {section from the knowledge based article}
    Configuration for first step
    Object Reference: RunState.Execution
    Automation Server: NI Teststand API 3.0 (1.0)  TestStand API 1.0
    Object Class: Execution
    Action: Call Method
    Method: GetFileGlobals    (option is not available,  there is GetModelSequenceFile, GetSequenceFile, GetStates, and GetThread)
    Parameters
    Return Value: Locals.FileGlobals
    sequencefileParam: RunState.ProcessModelClient
    I'm actually using a CVI Dll to access the variables.  I'm passing in "ThisContext" and then using:
    CAObjHandle      SeqContextHandle = ThisContext passed from teststand
        tsErrChk(TS_PropertyGetValString(SeqContextHandle, &errorInfo, "FileGlobals.SoftwarePN",0,&pszKeyName));
    This works great for accessing the FileGlobals of the process model, but not for the fileglobals of the client.
    Maybe there is a different ObjHandle to get to the client, but I don't know where it is.

    Hi,
    Not sure if this is available in version 1.03, but have you tried setting the SequenceFile properties to use the same fileglobals for each execution. This maybe your only option if available.
    Regards
    Ray Farmer
    Regards
    Ray Farmer

  • Call client inside a BPEL process

    Hello,
    I have the following question:
    Is it possible to call a client within a BPEL process to get more variables which are needed to complete the BPEL process?
    I don´t want to enter "all" the variables, which could be needed, in the beginning with one client, but only a minimum. For the rest, only the needed variables are entered manually with a client inside the BPEL process.
    I read something about asynchronous BPEL processes, but I don´t know if this will solve my problem and how I can open the client.
    Or is there another solution for my problem?
    I hope, that someone can help me.
    Thanks in advance.
    Mike
    (* Sorry for my bad english *)

    Hi Vijay,
    Actuall i just want the script of executing procedure from a package for fetching records from database in a bpel process.
    I'm not having the technical ability about how to create a package and a procedure and then use it in a bple process.
    Forward me if you know any link for creating packages and procedures.
    Regards,
    Chakri

  • Client Site info on Dreamweaver

    Every once in awhile Dreamweaver drops ALL my clients site
    info after entering 40 + client sites & I have to re-enter them
    all...it's a real pain. Anyone else have this issue? and can it be
    fixed.

    If you have increased the minimum font size then try the default setting "none" as a high value can cause such issues.
    *Tools > Options > Content : Fonts & Colors > Advanced > Minimum Font Size (none)
    Make sure that you allow websites to choose their fonts.
    *Tools > Options > Content : Fonts & Colors > Advanced > [X] "Allow pages to choose their own fonts, instead of my selections above"
    Reset the page zoom on pages that cause problems, make sure that the window is not maximized:
    *<b>View > Zoom > Reset</b> (Ctrl+0 (zero); Cmd+0 on Mac)
    *http://kb.mozillazine.org/Zoom_text_of_web_pages

  • "file/directory info" of file .lnk

    When i use "File/Directory Info" with a file .lnk, a local link, Labview attempts to gather info about the linked file. For example if i have "link to C.lnk", it returns info about C:\. How do i get info about the link itself, i mean the little .lnk file?

    Hi,
    I'm not going to be able to solve your problem, but I just wanted to say I had a similar problem in the past.
    While writing a recursive file tree program I wondered why one directory kept repeating itself.  I finally located a *.lnk file which was pointing to the parent directory.  Voilà.  LV kept looping thinking that there were ever-deeper directories there.
    The only way I found of getting around it (apart from Windows calls) was to simply ignore *.lnk files........
    Not great I realise but it's all I came up with at the time.
    Another method is to create a small batch program to list the *.lnk files in a directory and parse the output to a file which can then be read and analysed.  Windows itself has no problems with lnk files.
    Shane.
    Using LV 6.1 and 8.2.1 on W2k (SP4) and WXP (SP2)

  • OrcleProjects  Purge Process

    Hi All,
    Is there any documentation available that explains the oracle Projects purge process including all validations available in 12.1.1 or 12.1.3 EBS versions?
    Just to make sure that, what are the conditions to be followed to ensure the data is deleted from DB after running purge program.
    Appreciate help..
    Thanks,
    Edited by: SK on Jul 5, 2012 12:09 AM

    Please see these docs/links.
    How To Purge The PA_FORECAST_ITEMS Table? [ID 427564.1]
    Oracle E-Business Suite Releases 12.1 and 12.2 Release Content Documents [ID 1302189.1]
    Oracle E-Business Suite Release 12.1 Release Content Documents [ID 561580.1]
    Identifying Data Model Changes Between EBS 12.1.3 and Prior EBS Releases
    https://blogs.oracle.com/stevenChan/entry/ebs_data_model_1213
    R12 Docs -- Projects
    http://docs.oracle.com/cd/B53825_08/current/html/doclist.html#Projects_f
    Thanks,
    Hussein

  • Hana db filesystem directory structure and process command line

    Hi experts,
    Could someone provide please actual directory structure of Hana db filesystem?
    Generally speaking, I need to model some Hana db(of 1.0, 1.5 versions) entities. Among them:
    Schemas
    Data files
    Log files
    Important configuration files
    Database parameters(guess found in config files and command line)
    Database version
    The question is where i can find such information having access to filesystem?
    One another question is how common Hana db commandline looks like?
    Does it have one process or several?
    It would be perfect if someone give some ps -aef command result grepped with relevant Hana Db processes
    Thanks,
    Eugene
    Edited by: Eugene Kondrashev on Dec 28, 2011 12:51 PM

    Eugene Kondrashev wrote:
    > * What are the processes relevant to Hana Db?
    This is still changing pretty much ...
    Anyhow, just check the running services in HANA studio (landscape tab) and you have all the process at hand.
    > * What is the signature of starting command?
    What is that supposed to mean?
    > * How can I identify running Hana Db instance on a host having shell access?
    How about the HDB command?
    SUSE Linux Enterprise Server 11 (x86_64)
    /usr/sap/HAN/HDB00> HDB help
    Usage: /usr/sap/HAN/HDB00/HDB { start|stop|reconf|restart|version|info|proc|admin|kill|kill-<sig>|term }
      kill or kill-9 should never be used in productive environment!
    /usr/sap/HAN/HDB00> HDB info
    USER       PID  PPID %CPU    VSZ   RSS COMMAND
    hanadm   14682 14677  0.0  85580  2180 sshd: hanadm@pts/0
    hanadm   14683 14682  3.3  16768  2980  \_ -bash
    hanadm   14756 14683 18.1  13652  1680      \_ /bin/sh /usr/sap/HAN/HDB00/HDB info
    hanadm   14782 14756  0.0   6620   892          \_ ps fx -U hanadm -o user,pid,ppid,pcpu,vsz,rss,args
    hanadm   31638     1  0.0  42624  1820 sapstart pf=/usr/sap/HAN/SYS/profile/HAN_HDB00_vml3012
    hanadm   31645 31638  0.0 528216 151400  \_ /usr/sap/HAN/HDB00/vml3012/trace/HDB.sapHAN_HDB00 -d -nw -f /usr/sap/HAN/HDB00/vml3012/daemon.ini pf=/usr/sap/HAN/SYS/profi
    hanadm   31665 31645  0.5 5001972 1002844      \_ hdbnameserver
    hanadm   31723 31645  0.0 4367024 244336      \_ hdbpreprocessor
    hanadm   31744 31645  1.9 5664496 1779448      \_ hdbindexserver
    hanadm   31752 31645  3.6 7197924 3359440      \_ hdbstatisticsserver
    hanadm   31759 31645  0.6 5289164 1507684      \_ hdbxsengine
    hanadm   32017 31645  0.0 429188 124344      \_ sapwebdisp_hdb pf=/usr/sap/HAN/HDB00/vml3012/wdisp/sapwebdisp.pfl -f /usr/sap/HAN/HDB00/vml3012/trace/dev_webdisp
    hanadm   31527     1  0.0 292676 110380 /usr/sap/HAN/HDB00/exe/sapstartsrv pf=/usr/sap/HAN/SYS/profile/HAN_HDB00_vml3012 -D
    > * Does Hana DB started with SAP start profile? If so, could someone point me to the example of such a profile?
    ?? seriously... take a guess
    regards,
    Lars

Maybe you are looking for

  • 'JS Callback error while executing script' in 4.7

    hello everyone, When I was installing SAP 4.7 after the Database load jobs I am getting an error like ' JS Callback error while ecevuting script'.... Jobs are loading but after thatI was having this error... I tried several times but the error is the

  • Illegal Tcodes error while role generation in BRM GRC 10.0

    Hi Experts, I am working on SP11 GRC 10.0. In BRM, after following all necessry steps for role creation, when I enter last stage "Role Generation" and try to generate it, I am getting error "Illegal Tcodes (system name)" as shown in below screenshot.

  • Accessing string from other classes

    Sorry if this seems simple to you, but i'm having problems accessing four string that are declared and used in my public class from another class. I've tried declaring the strings public but it still says 'cannot resolve symbol' when i try to compile

  • Lookup and control of licenses on Wm-Ware server

    How are licenses Wm-Ware server, Lookup and control of licenses when a user starts an Office application. Will Microsoft count users who use Office through Citrix, if the user has an Office 365 license?Or do we need to Install Office 365 on clients?

  • Use of SUS with bidding Engine

    Dear all, I want to use the BBPSC18 for request services (external labour). Then I want to use the bidding engine to create bid invitation from sourcing cockpit. From this point I have some questions - I read it is not necessary to use SUS for this p