Can anyone convert this Oracle 11g (RAC?) into a usable Datasource in CF8.0.1 and CF9 Admin?

Can someone help me convert this into the correct settings for an Oracle datasource in CF8.0.1 and CF9? I would prefer to not use the thin client if that is even possible. "With progress comes great change to connection settings!" -Nate, 2011
ABCDEPRD = (DESCRIPTION=
   (LOAD_BALANCE=on)
   (FAILOVER=on)
   (ADDRESS_LIST=
      (SOURCE_ROUTE=yes)
      (ADDRESS = (PROTOCOL = TCP)(HOST = dom1.xyz.com)(PORT = 1521))
      (ADDRESS_LIST=
        (LOAD_BALANCE=yes)
        (ADDRESS=
          (PROTOCOL=TCP)
          (HOST=qrsx901.xyz.com)
          (PORT=3200)
        (ADDRESS=
          (PROTOCOL=TCP)
          (HOST=qrsx902.xyz.com)
          (PORT=3200)
    (ADDRESS_LIST=
      (SOURCE_ROUTE=yes)
      (ADDRESS = (PROTOCOL = TCP)(HOST = dom2.xyz.com)(PORT = 1521))
      (ADDRESS_LIST=
        (LOAD_BALANCE=yes)
        (ADDRESS=
          (PROTOCOL=TCP)
          (HOST=qrsx901.xyz.com)
          (PORT=3200)
        (ADDRESS=
          (PROTOCOL=TCP)
          (HOST=qrsx902.xyz.com)
          (PORT=3200)
    (CONNECT_DATA=
      (SERVER=dedicated)
      (SERVICE_NAME=ABCDEPRD_TAF)

user13016840 wrote:
By any chacne you have the steps on your blog)?Currently its not there in blog..
You can refer to :
http://oraforecast.com/orawiki/index.php/How_to_enable_Dead_Connection_Detection
http://www.dba-oracle.com/t_sqlnet_expire_time.htm
How does Dead connection detection work?
Hope it will help..
Regards
Rajesh

Similar Messages

  • Can Anyone Convert this to Coding..

    Hi..new to programming. I was just asking a huge favour. Can anyone convert the following sets of instructions to code. I really am struggling in java lately...thanks if anyone has done it for me.
    1. read each line from a buffered reader and create a string of the whole file with '\n' and everything.
    2. tokenize each line and then each element to determine the dimensions of the grid.
    3. create the grid using those dimensions.
    4. reinitialize the tokenizers.
    5. go through each element assigning it to the proper position on the grid.
    6. return the grid

    Well lets take these requirements one at a time.
    1. read each line from a buffered reader and create a string of the whole file with '\n' and everything.
    You are reading the file line by line.
    But you are not "creating a string of the whole file with '\n' and everything".
    The simple way to do that is to add it line by line
    String wholeFile = "";
    wholeFile = wholeFile + line + "\n";
    The better way would be to use a java.lang.StringBuffer, or a java.io.StringWriter object.
    public static String readFile(String layoutFileName) throws IO Exception{
    2. tokenize each line and then each element to determine the dimensions of the grid.
    You kind of have this already:
    StringTokenizer b = new StringTokenizer (fileContents, "\n");
    each time you call nextToken() it will return one line.
    To split the line:
    StringTokenizer colTokens = new StringTokenizer(line);
    3. create the grid using those dimensions.
    4. reinitialize the tokenizers.
    5. go through each element assigning it to the proper position on the grid.
    a[row][col] = ??????
    6. return the grid
    public static int[][] readGridFromString(String fileContents){
    so your program would be along the lines of...
    String fileContents = readFile(fileName);
    int[][] grid = readGridFromString(fileContents);
    What is it that separates the tokens on each individual line? Spaces?
    Hope this helps some,
    evnafets

  • Can anyone convert this code to java......(urgent)

    hi everybody.....
    can anybody provide me a java code for the following problem......
    i want that if user enters input like this:
    sam,john,undertaker,rock
    the output should be:
    'sam','john','undertaker','rock'
    i.e , is converted to ',' and the string starts with ' and ends with '
    i have a javascript code for this and it is reproduced below to have full view of the problem.........
    <HTML>
    <BODY>
    <script type="text/javascript">
    function CONVERT(){
    var re=/[,]/g
    for (i=0; i<arguments.length; i++)
    arguments.value="'" + arguments[i].value.replace(re, function(m){return replacechar(m)}) + "'"
    function replacechar(match){
    if (match==",")
    return "','"
    </script>
    <form>
    <textarea name="data1" style="width: 400px; height: 100px" ></textarea>
    <input type="button" value="submit" name="button" onclick="CONVERT(this.form.data1)">
    </form>
    </BODY>
    </HTML>
    can anyone do it for me.
    thx in anticipation

    Sunish,
    On your problem, check in the String class documentation the method replaceAll(), you can solve your problem in just one line of code.
    As for why the serious poster(the ones that are here to help, for many year, instead of just disrupting the forum) do not give you code is that they are here to help people learning and not to give free code.
    You help a person to learn, when you provide this person with the tools to research and help the person to think out of his problem, so that in the future the learning person can repeat the process by herself instead of going after finnished solution everytime he needs it.
    May the code be with you.

  • Can anyone convert this *.LIB file? 8.5 will not open it.

    This is getting annoying.  A lot of older VIs are posted here but the latest labview will not open them.  Al l can say to that is ERRRRR!!!!!.
    If anyone could convert this to a revision that LV 8.5 can open i would appreciate it.
    Thanks
    Tim C.
    1:30 Seconds ARRRGHHH!!!! I want my popcorn NOW! Isn't there anything faster than a microwave!
    Attachments:
    labview_browser.llb ‏1192 KB

    Well 9 minutes is not qite microwave speed but that is pretty good!
    Ben
    PS And it much faster than the microwave I have at home now. My wife reported last night "The microwave is on fire!" Well it wasn't exactly under going a chemical reaction with O2 but the sparks sure looked like flames!
    Message Edited by Ben on 12-04-2007 08:03 AM
    Ben Rayner
    I am currently active on.. MainStream Preppers
    Rayner's Ridge is under construction

  • Can anyone convert this LV 4.0.2 VI to 7.1?

    This VI is part of a driver for a Fluke 2640/2645A (NetDAQ)
    Thanks
    Attachments:
    main.vi ‏73 KB

    I had no problem opening it with 7.1 (short of all the missing subVIs). In any case, here it is.
    Attachments:
    main_7.1.vi ‏61 KB

  • Can you convert this to recursion ?

    Can anyone Convert this to REcursion ?? (dont change the method signature, i have been trying for an hour but i got no luck, please post solutions , thanks !
    public static int binarySearchR(int[] a, int key) {
    int bot = 0, top = a.length;
    while (bot < top) {
    int mid = (bot + top)/2;
    if (key < a[mid])
    top = mid;
    else if (key > a[mid])
    bot = mid + 1;
    else return mid;
    return -1;
    }

    Forums trolls are people who just flame posts for
    attention.I see. So after all these years I've been on the forum and thought I knew what trolls were, all along it was me who was the troll. Thanks for letting me know.
    im looking for any hints how to do it. Not really. Looks to me like you're just looking for it to get done by someone else.
    >
    and its not homework. get your facts right. its a
    exercise from a lab. that has no grading policy.As if that makes a difference.

  • Can anyone solve this error? 0xc 19a0013

    can anyone solve this error? 0xc 19a0013 my black ink cartridge will not print and its full. i've cleaned the heads and still no black.  please help.

    Hello family1023, and welcome to the HP Forums, I hope you enjoy your experience!
    I see you are experiencing print system issues.  I would love to try and help you, but I do need a little information first. I am linking a few HP Support documents below that will show you how to find your product number. Also, please include which operating system you are using. Also, if you're using Windows, please include whether your operating system is 32-bit or 64-bit. With this information and the product number we can provide you with accurate information.
    How Do I Find My Model Number or Product Number?
    Mac OS X: How Do I Find Which Mac OS X Version Is on My Computer?
    Which Windows operating system am I running?
    Is the Windows Version on My Computer 32-bit or 64-bit?
    Please let me know what you find, and thanks for posting on the HP Forums!
    Please click “Accept as Solution " if you feel my post solved your issue, it will help others find the solution.
    Click the “Kudos, Thumbs Up" on the right to say “Thanks" for helping!
    Jamieson
    I work on behalf of HP
    "Remember, I'm pulling for you, we're all in this together!" - Red Green.

  • Trying to drag pdf files i have and combine them into one pdf file in the account i just purchased with Adobe. when i drag a pdf file over Adobe doesn't accept it. says it can not convert this type of file. but it is an Adobe file. Do I need to change it?

    Trying to drag pdf files i have and combine them into one pdf file in the account i just purchased with Adobe. when i drag a pdf file over Adobe doesn't accept it. says it can not convert this type of file. but it is an Adobe file. Do I need to change it in some other form befor dragging it?

    Hello djensen1x,
    Could you please let me know what version of Acrobat are you using.
    Also, tell me your workflow of combining those PDF files?
    Please share the screenshot of the error message that you get.
    Hope to get your response.
    Regards,
    Anubha

  • I have 13 dollars left on an apple store gift card, how can I convert this into money for my iTunes account?

    I have 13 dollars left on an apple store gift card, how can I convert this into money for my iTunes account?

    You can't.

  • How can i convert this data(00000000) into date format(yyyy-MM-dd)

    Hi,
    i am using this method to convert date format from string.
    public static string FormatDate(string inputDate, string inputFormat)
                System.DateTime date = DateTime.ParseExact(inputDate, inputFormat, null);
                string datepresent = DateTime.Now.Date.ToString("yyyy-MM-dd");
                return datepresent;
    its working properly,
    but when input data is like 00000000 i am getting error this is not valid.
    how can i convert this into date format any help..!

    Have you tried the above code:
    I can see it is working with both Date and DateTime destination nodes.
    Map:
    Functoid Parameters:
    Functoid Script:
    public static string FormatDate(string inputDate, string inputFormat)
    string datepresent;
    if (inputDate == "00000000")
    datepresent = "0000-00-00";
    else
    System.DateTime date = DateTime.ParseExact(inputDate, inputFormat, null);
    datepresent = date.ToString("yyyy-MM-dd");
    return datepresent;
    Input:
    <ns0:InputDateString xmlns:ns0="http://DateFormat.SourceSchema">
    <DateString>00000000</DateString>
    </ns0:InputDateString>
    Output:
    <ns0:OutputDate xmlns:ns0="http://DateFormat.DestinationSchema">
    <Date>0000-00-00</Date>
    </ns0:OutputDate>
    If this answers your question please mark as answer. If this post is helpful, please vote as helpful.

  • Can you convert this file into good searchable pdf file: Medical Terminology- A Short Course.azw4

    Can you convert this file into good searchable pdf file: Medical Terminology- A Short Course.azw4

    I don't think that Adobe offers any software to convert .azw4 files.  Search Google for alternate converters.

  • Can Oracle 11g RAC support 2 separate databases?

    1. Can Oracle 11g RAC support 2 separate databases given that it asks for SCAN ip for cluster with a single Listener port number?
    2. Will the Oracle 11.2 database connections work successfully if I setup a mandatory DNS server within the Oracle RAC servers?
    I'm leading a team for a 11g project and appreciate responses.
    Thanks
    Satish.

    No Real Application Cluster technology has ever supported more than one database.Quite untrue.
    I know that both you and Tom Kyte take the stand that a cluster should have only 1 instance per node.
    That doesn't mean that it is not possible to have more than one database in a cluster -- i.e more than one instance in a node.
    That doesn't mean that it must always be so. Installing a separate cluster and additional EE + RAC licences for a separate database can be quite expensive. Of course, your reply is "consolidate". That is another debate that has been going on for years.
    A discussion on multiple databases on RAC is also at
    http://www.freelists.org/post/oracle-l/multiple-databases-in-a-single-RAC-cluster
    Hemant K Chitale
    Edited by: Hemant K Chitale on Jan 12, 2010 11:15 AM

  • Oracle 11g RAC on RHEL 4.0, error on 1 Node while running ./root.sh for CRS

    Hi,
    I am trying to install Oracle 11g RAC on RHEL 4.0 on Vmware and at the end of CRS installation when installer asks to run the two scripts (orainstRoot.sh and root.sh) on one node (on the node where runInstaller is started) throws following error
    [root@LRAC1 crs]# ./root.sh
    WARNING: directory '/xhdd/u01/crs/oracle/product/11.1.0' is not owned by root
    WARNING: directory '/xhdd/u01/crs/oracle/product' is not owned by root
    WARNING: directory '/xhdd/u01/crs/oracle' is not owned by root
    WARNING: directory '/xhdd/u01/crs' is not owned by root
    WARNING: directory '/xhdd/u01' is not owned by root
    WARNING: directory '/xhdd' is not owned by root
    Checking to see if Oracle CRS stack is already configured
    Setting the permissions on OCR backup directory
    Setting up Network socket directories
    /xhdd/u01/crs/oracle/product/11.1.0/crs/bin/ocrconfig: line 78: /xhdd/u01/crs/oracle/product/11.1.0/crs/bin/ocrconfig.bin: cannot execute binary file
    /xhdd/u01/crs/oracle/product/11.1.0/crs/bin/ocrconfig: line 78: /xhdd/u01/crs/oracle/product/11.1.0/crs/bin/ocrconfig.bin: Success
    Failed to upgrade Oracle Cluster Registry configuration
    [root@LRAC1 crs]#
    While on the second node the root.sh script does not give any errors, here the output
    [root@LRAC2 crs]# ./root.sh
    WARNING: directory '/xhdd/u01/crs/oracle/product/11.1.0' is not owned by root
    WARNING: directory '/xhdd/u01/crs/oracle/product' is not owned by root
    WARNING: directory '/xhdd/u01/crs/oracle' is not owned by root
    WARNING: directory '/xhdd/u01/crs' is not owned by root
    WARNING: directory '/xhdd/u01' is not owned by root
    WARNING: directory '/xhdd' is not owned by root
    Checking to see if Oracle CRS stack is already configured
    /etc/oracle does not exist. Creating it now.
    Setting the permissions on OCR backup directory
    Setting up Network socket directories
    Oracle Cluster Registry configuration upgraded successfully
    The directory '/xhdd/u01/crs/oracle/product/11.1.0' is not owned by root. Changing owner to root
    The directory '/xhdd/u01/crs/oracle/product' is not owned by root. Changing owner to root
    The directory '/xhdd/u01/crs/oracle' is not owned by root. Changing owner to root
    The directory '/xhdd/u01/crs' is not owned by root. Changing owner to root
    The directory '/xhdd/u01' is not owned by root. Changing owner to root
    The directory '/xhdd' is not owned by root. Changing owner to root
    Successfully accumulated necessary OCR keys.
    Using ports: CSS=49895 CRS=49896 EVMC=49898 and EVMR=49897.
    node <nodenumber>: <nodename> <private interconnect name> <hostname>
    node 1: lrac1 lrac1-priv lrac1
    node 2: lrac2 lrac2-priv lrac2
    Creating OCR keys for user 'root', privgrp 'root'..
    Operation successful.
    Now formatting voting device: /dev/sdd1
    Format of 1 voting devices complete.
    Startup will be queued to init within 30 seconds.
    Adding daemons to inittab
    Expecting the CRS daemons to be up within 600 seconds.
    Cluster Synchronization Services is active on these nodes.
    lrac2
    Cluster Synchronization Services is inactive on these nodes.
    lrac1
    Local node checking complete. Run root.sh on remaining nodes to start CRS daemons.
    Any ideas to solve this issue.
    Thanks in advance,
    Sameer

    I tried reinstalling again and it worked on Vmware Server.Some oracle products are certified on Oracle VM , but not RAC at the moment.
    You can download Oracle VM from otn.oracle.com
    Check ML Note:464754.1 for details about Certified Software on Oracle VM.
    - Virag Sharma
    http://virag.sharma.googlepages.com/

  • Oracle 11g RAC installation on windows 2008 64 bit

    Hello Everyone,
    can i get some details regarding Oracle 11g RAC installation on windows 2008,
    minimum Hardware Requirement
    Will windows support ASM
    Can i get a documentation regarding the RAC installation on windows. we were planning to have 11.5 on windows 2008.
    please send me some docs regarding os requirements, installation and ASM details.
    Thank you

    Hi Everyone,
    I installed Oracle RAC 11g on Windows 2008 64 bit, The installation was successfull crs_state -t executed successfully.
    Bt the machine got crashed ,when executed a select query with 100 sessions( For performance evaluation using TG). A blue screen is appeared on two nodes. So i am not able to evaluate the performance.
    Can you please tell any suggesstions to solve this issue? Is our hardware is not sufficient? Or any software settings has to be done?. I tried most of hte technique ,bt the problem still exists.
    The following machine configuration is used for Oracle RAC setup
    Intel Core 2 Duo 2.66 GHz,
    Ram :4GB.
    OS : windows 2008 Server 64 Bit
    Oracle RAC , Clusterware 11g R2 64 Bit.

  • Best practice for installation oracle 11g rac on windows 2008 server x64

    hello!
    can somebody tell me a good book or an other kind of literature regarding "best practice for installation oracle 11g rac on windows 2008 server x64"? thx in advance!
    best regards,
    christian

    Hi Christian,
    Check this on MOS
    *RAC Assurance Support Team: RAC Starter Kit and Best Practices (Windows) [ID 811271.1]*
    https://support.oracle.com/CSP/main/article?cmd=show&type=NOT&doctype=BULLETIN&id=811271.1
    DOC Modified: 14-DEC-2010
    Regards,
    Levi Pereira

Maybe you are looking for

  • How to have multiple default dimension members

    Hi There I am using AS2008, when editing a role, under the dimension data tab, under advanced, you can define a default dimension member. However i need my default dimension member to be members, i have tried using a attribute set to true for many me

  • Wifi problems and 3G/4G after 5.1.1 iPhone4s

    i have realy problems if i have the WIFI enabled and i come out of the WIFIit will not work in the 4G mode and vice versa... i have to reboot the iphone and disable the WIFI than it works. i saw many users have the same problem and also with bluetoot

  • Displaying header and line items

    Hi, i) i have a fieldname i.e text and its value to display in the bodypage  (body).. i want to display the text and its value only if the value is there.. otherwise it should not be displayed and a blank line also should not appear in smartforms we

  • What Software Do I need to add Chapter Markers

    I've got a 55 min QuickTime movie file that I'd like to simply add Chapter Makers as well as setup a Chapter Menu selection at that beginning. Also, I'd like to be able to render this file to a format that will playback on any DVD player. To be able

  • Oracle user id

    hii how will i get the user id into my forms ?? i mean i have a field 'created by' which stores the id of the user where and how do i get the user id into my text field ?? plzz help mandar