New parameter to SOCKSPROXY function of GoldenGate 12 c

Hi all!

Someone is trying to use the new SOCKSPROXY parameter in the GoldenGate extract?

I got the following error when I use:

2015-04-14 12:40:37 OGG - 00382 Oracle GoldenGate Capture for Oracle ERROR, ext2.prm: is not a valid option for RMTHOST.

2015-04-14 12:40:37 OGG - 01668 Oracle GoldenGate Capture for Oracle ERROR, ext2.prm: PROCESS ABENDING.

Parameters:

RMTHOST dc0a5db00.ps, 7809 MGRPORT, SOCKSPROXY 10.70.133.10:17809

or

Add SNIPPET test1 desc 'extract from test' RMTHOST dc0a5db00.ps MGRPORT 7809 RMTNAME test1 SOCKSPROXY 10.70.133.10:17809

Could you please help me in it?

Thank you in advance,

Sergey Kushnarev.

Hello

What version of OGG you run with? I think 12.1.2.1.0 from that this setting is supported.

I use the setting as follows.

RMTHOST 109.150.140.013, MGRPORT 9000, SOCKSPROXY 127.0.0.1:1080

Haddi

Tags: Business Intelligence

Similar Questions

  • How to pass the value entered for the parameter IN a function

    Hello
    I'm new to pl/sql programming.
    The function below is used inside a package and the package is called in visual studio.
    The function uses the input parameters 2.
    Out what "in_report_parameter_id" value comes through the application of service job processor.
    The second IN the parameter values are hard coded into the function.
    I am not able to understand this.
    If the values are hard coded, how to ensure that only the hard coded values are the right ones?
    Please could someone explain?
    I don't really have good idea on how to move the INPUT parameter to the function or procedure
    Is there any nice document that could give me good understanding about what are the ways or types we could transmit values to the input in the subprogrammes parameter?

    Thanks in advance.

    CREATE OR REPLACE FUNCTION get_class_text_str
    (
         in_report_parameter_id IN NUMBER,
         in_which                IN VARCHAR2 DEFAULT 'SELECT'
    )
    RETURN VARCHAR2
    IS
             end_text            VARCHAR2 (50)   := ''; 
             my_class_text_str  VARCHAR2(10000) := '';
             my_class_value_str VARCHAR2(10000) := '';
     
         CURSOR class_text(c_1_text VARCHAR2, c_2_text VARCHAR2) IS
         SELECT c_1_text || report_parameters.report_parameter_value 
                               || c_2_text
                               || report_parameters.report_parameter_value 
                               || '" '
          FROM report_parameters
         WHERE report_parameters.report_parameter_id     = 3690
           AND report_parameters.report_parameter_group  = 'CLASS'
           AND report_parameters.report_parameter_name   = 'CLASS'
     GROUP BY report_parameters.report_parameter_value
     ORDER BY CAST(report_parameters.report_parameter_value AS NUMBER);
     
    BEGIN
    
         IF (in_which = 'SUM') THEN     
      
              OPEN class_text ( 'SUM(NVL("Class ', '", 0)) "Class ' );
        
         ELSIF (in_which = 'PERC')THEN
      
              OPEN class_text ( 'ROUND((("Class ', '" / "Total") * 100), 2) "Class ' );
              end_text := ', DECODE("Total", -1, 0, 100) "Total" ';
        
         ELSE
      
              OPEN class_text ( 'SUM(DECODE(bin_id, ', ', bin_value, 0)) "Class ' );
        
         END IF;
     
         LOOP
              FETCH class_text INTO my_class_value_str;
              EXIT WHEN class_text%NOTFOUND;
     
              my_class_text_str := my_class_text_str || ', ' || my_class_value_str;
         END LOOP;
     
         CLOSE class_text;
      
         my_class_text_str := my_class_text_str || end_text;
     
         RETURN my_class_text_str;
         
    END get_class_text_str;
    /
    Published by: user10641405 on November 19, 2009 08:16

    Published by: user10641405 on November 19, 2009 08:30

    This is not a conception I would use, but should work if coded correctly. I would probably create a reference text cursor query and use a fetch of open and close.

    You have 2 input parameters, in_report_parameter_id and in_which. I could not find where in_report_parameter_id has been used in the program, but the value passed to in_which is used in the logic of the FI to decide on opening the cursor. After the cursor is opened lines are to be read and possibly the cursor is closed.

    The in_which values are compared to the are hard-coded. It is the programming interface to ensure that the values are the values and the measures taken are also correct. Your program is assuming that if the first 2 values are not met the third listed is the one you want.

    To pass values of entry in a procedure you simply provide the values as a literal or something like variable in the call,

    whatever := get_class_text_str(1,'SELECT');
    
  • new laptop has no function of cd, how do I install acrobat 7.0

    My new laptop has no function of cd to insert me installation disk, how to install acrobat 7 with just a serial number?

    The "activation server" Adobe, which allow you to install and use, was turned off years. You cannot use your CD in all cases. (Although it is external plugin CDs are cheap, easy to use and almost essential).

    There is a special Acrobat 7 download for users dismissed (with the new series)... but it won't work on existing systems. Unless you have Windows Vista, 32-bit, and the more you will probably need to purchase Acrobat again. (No upgrade more, sad to say).

  • Add a new parameter to bounce the database?

    Hi all

    Let me know, if the rebound in the database is necessary, if we add a new [parallel_force_local] parameter to add / added to the existing pfile/spfile.
    This setting is not all present in the database, but I am aware that change us its value from true to false and vice versa with a rebound in the DB.
    But the addition of this new parameter to the init file, needs a rebound of DB?

    Thank you
    Annick.

    Lol you can add a new parameter to the spfile at any time. You don't have to bounce the database.

    The new setting will not take effect until the next rebound, but you can add it at any time.

    modify the system = value scope = spfile;

  • Pass a parameter to a function to use AS the operator in

    I'm trying to pass a parameter to a function that uses the LIKE '% name_in % ',.
    I don't know how to use...

    the setting is called "name_in".


    Thanks in advance,
    M

    Hello

    Mehrdad says:
    I'm trying to pass a parameter to a function that uses the LIKE '% name_in % ',.
    I don't know how to use...

    the setting is called "name_in".

    Your code should say:

    ... LIKE '%' || name_in || '%'
    

    If name_in is inside the single quotes, it will mean the 7 characters literals 'n', 'a', ', 'e', '_', 'i' and 'n'.
    You want to refer to the variable named name_id, in order to keep the name of the variable outside of the quotation marks.

  • How to pass parameter in the function using the select statement?

    Hello

    I had a problem. I can't pass as parameter to the function by using the select statement. But it can pass as a parameter using the "code". How can I solve this problem?

    For example,.
    Select * from table (SplitFunction ('HS750020, HS750021')) < < < this work.

    but

    Select * from table (SplitFunction (select LOT_NO in the TRACER_SEARCH_SCHEDULE where JOB_ID = '36')) < < < do not work.

    Thank you for trying to help him. Thank you.

    Select * from table (SplitFunction (select LOT_NO in the TRACER_SEARCH_SCHEDULE where JOB_ID = '36'))< do="" not="">

    Try like this

    select * from table(select splitfunction(lot_no) from tracer_search_schedule where job_id='36')
    

    Just make sure that your subquery returns only 1 row.

  • Problems using the event to write new parameter values to VISA structure

    Hi all

    I created a VI to read an Omega flow meter. It is possible to change setpoint (setpoint (0-2) SLPM) of the meter and the gas (O2, CH4,...). To read instrument I write its ID (A-Z), followed by a carriage return, for example: A + 0x0D

    I created a VI with the events to write only the parameters to the instrument when a value is changed. My VI works but from time to time, it does not write the parameter change (gas or set point). I think that is has something to do with the while loop containing an entry VISA.

    Open FMA contains parameters and VISA opend

    Case of timeout initialize writing gas and setpoint for the first time

    Other events are for the change in the value of setpoint and gas

    How can I make sure that any change of setting will be writtent the instrument?

    Thank you

    Salvation Bass,

    Well, it is true that I lose this way time-out feature.

    No, you do not lose this feature. You put in a different position.

    You must call it BEFORE your loop!

    I'm not sure that I am following on this one there

    Why are you not sure? You have a large number of constants "0d" and it would be great to see that they are displayed in HEX mode instead of the normal display mode.

    The new VI manages events sometimes... but sometimes, missing a few changes... I think it is because there is an entry in the while loop. Do you have any idea how to prevent this?

    Never, NEVER use parallel loops to write and read on the same device on your serial port!

    How do ensure you that you always get the right answer to your order sent before?

    What is the purpose of using a second loop here? A loop with no wait States?

  • Pass the parameter to the functions called from a dll

    Hi all

    I am interfacing a motor controller for PMC - 100 through the Protocol of Performax using labwindows.

    I need to explicitly link the PerformaxCom.dll and call functions with him. I'm calling this function

    BOOL fnPerformaxComOpen (DWORD IN dwDeviceNum, OUT HANDLE * pHandle);

    Faithful:

    If you want to link explicitly, you can consult this article: http://zone.ni.com/devzone/cda/tut/p/id/8503

    It has a code snippet that shows passing two parameters to a DLL function.

    But as for your statement that "I don't know how to pass parameter to him", in the example, you reference, you pass a parameter: it's just a constant string rather than a variable.

  • By the way the record as a parameter type to function

    Hi all

    I tried the below the example query for the record type as IN parameter works and I confused when calling the function.

    Please find the code below

    create or replace package pkg_rec is

    type t_rec record is (ename, sal emp.sal%type emp.ename%type);

    end;

    create or replace function get_emp_sal (emprec pkg_rec.t_rec)

    number is back

    v_empno emp.empno%type;

    Start

    Select empno in v_empno

    WCP

    where ename = emprec.ename and sal = emprec.sal;

    Return v_empno;

    end;

    -Block to call the function

    declare

    v_rec pkg_rec.t_rec;

    v_empno emp.empno%type;

    Start

    v_rec. Ename: = 'SCOTT ';

    v_rec. SAL: = 3000;

    v_empno: = get_emp_det (v_rec); -Get the error "Expression is of the wrong type."

    DBMS_OUTPUT. Put_line (' values ' | v_empno);

    end;

    You can please me to pass the parameter to function; referring

    Thank you very much.

    Is it typo?

    Your function is called get_emp_sal, but you call get_emp_det.

    Concerning

    Marcus

  • Add a new line of text/function in a file html with JSFL

    , I want to add a line of text/function in an existing html file. I can read the file with FLfile.read() , and this is my code:


    var pathCom=fl.getDocumentDOM().pathURI(); //get complete path

    var pathWOFile=pathCom.substr(0,pathCom.lastIndexOf('/')); //get the path without file

    var readFile=FLfile.read(pathWOFile+'/index.html'); //read the html file

    alert
    (readFile);


    and the structure of my html file is:


    <html>
     
    <head>

      
    <script>
      
    //i want to add a new function on this line
      
    </script>

     
    </head>
     
    <body>
     
    </body>
    </html>


    I already know there is a function called FLfile.write() to add some text to the file, but the text still added to the last line of the structure. Now, I want to add a function of text to the line between the <script> tag, how I did that, sorry for my bad English and thanks for your reply

    If it is always static (that is, you know exactly the tag) you can treat it as alternative text. I suggest you add an id to the tag so there is no confusion as

    var writeFileContent = readFile.replace("", "")
    

    And then rewrite the entire file

  • Comparing a parameter in a function for output

    Here's my question:

    I have a function that I pass a parameter too which is actually an IP address.  I need inside the function, compare this setting for the GRPE on output ports.  Here is my function: any parameter I pass, I get this as the output "there is no portgroup.

    Portgroup {} function

    Param ($Prod_IP)

    If ($Prod_IP-like "10.10.")

    {

    $Portgroup = "portgroup 10.10.0.0.

    }

    ElseIf ($Prod_IP-like "10.11.")

    {

    $Portgroup = "portgroup 10.11.0.0.

    }

    ElseIf ($Prod_IP - similar "10.12.")

    {

    $Portgroup = "portgroup 10.12.0.0.

    }

    On the other

    {

    $Portgroup = "there is no portgroup.

    }

    $Portgroup

    }

    If ($Prod_IP -like "10.10.*")
    

    Or

    If ($Prod_IP.StartsWith("10.10."))
    

    ---

    MCITP: SA + WILL, VMware vExpert, VCP 3/4

    http://blog.vadmin.ru

  • not able to pass the table name as parameter in the function

    Hello

    I am not able to move from tablename as parameter. I use the below function.
    -------------------------------------------------------------------------------------------------

    function count_test (tabname varchar2) return number is
    l_count number;
    Start

    Select count (*) IN the tabname FROM l_count;

    RETURN l_count;
    END;

    You can not do with static SQL.

    The only way is to do it with dynamic SQL:

    EXECUTE IMMEDIATE ' select count (*) FROM ' | tabname INTO l_count;

    Kind regards.
    Al

    Published by: Alberto Faenza 10 may 2012 01:44
    Misspelling

  • Enter the value of PARAMETER of a function at run time

    Hello

    I wrote a query and created a .sql file. So whenever I use to perform an action, I'll just run the my unix box .sql file. But in one of the functions of my query, the parameter must be provided whenever coz it changes from time to time. So please let me know how I can ask the user to enter the parameter for this single variable whenever it runs the .sql file.

    Kind regards
    Niraj

    Hi, Andrew,

    There is no way to get feedback from a user in PL/SQL or SQL. You must use the tools of front-end for it.

    If your forehead is SQL * Plus, then you can use variables to substitute in the function call. For example:

    SELECT  *
    FROM    table_x
    WHERE   my_function (x, &y, z)  = 0;
    

    stop and ask the user to "report a value to y ' before compiling the query.

    You can also use the SQL * more ACCEPT the command set one as proxy & y.

    I hope that answers your question.
    If this isn't the case, display one complete script (including the tables or functions, other than those feeding by Oracle) that you need, and a sample of the desired output. For example, "If the user enters 1, then the output should be... but if the user enters 5, then it should be...» ».

  • How to place a reference parameter in a function?

    Hello

    Im having trouble with a setting that I want to pass by reference, so I can use this variable outside the function.

    What im do creates a global as variable var cont:int; and then in an eventListener like enter_frame (stage.addEventListener..) call to a function called "mover", this function changes the value of "cont" and I want to just print the modified value. The problem is that I can't pass the reference value just by const: s., the function is zero, but if I change to return int, its useless because that whenever I call the function, the value I want to back its created every time a new value, because I need to declare so...

    I read I can use a var as object, but I don't really get (im used to c ++ I must say)

    Thank you

    don't declare a variable inside a function body unless you want it to be local to this feature/function call.  That is to say, use:

    var cont:int;

    function whatever() {}

    CONT = either;

    }

  • Pass parameters with a function that is a parameter to another function.  Is this possible?

    Hello

    I have some difficulty to pass parameters to a function that is passed as a parameter.  In the code for my application I am instantiating this class five times: they are buttons in a menu.  In this category, I had an onRelease handler that does a number of things when a button is released, which is to call a function defined in the level of enforcement of the code.  My problem is that I don't know how to send parameters to the functions.

    In my StandardButton class I:

    class StandardButton extends MovieClip
    {
         
         /* define properties */
         private var selected:Boolean = false;
         public  var btnMenu:MovieClip = null;
         public  var execFunc:Function;
         
         /* define constructor */
         public function StandardButton()
         {
              trace("Standard UI button created: " + this);
              this.onRelease = releaseHandler;
         }
         
         /* define methods */
         public function releaseHandler()
         {
              if (selected) {
                   
                   //this["bg"].gotoAndStop("normal");
                   //selected = false;
                   
              } else {
                   
                   //show the normal state of all other buttons in the menu set
                   for (var i:Number = 0; i < btnMenu.btnList.length; i++)
                   {
                        this._parent[btnMenu.btnList[i]].bg.gotoAndStop("normal");
                        this._parent[btnMenu.btnList[i]].selected = false;
                   }
                   
                   //show the select state of the button
                   this["bg"].gotoAndStop("select");
                   
                   //execute the function attached to this button
                   execFunc();
                   
                   //set the selected boolean for the current button
                   selected = true;
                   
              }
         }
         
         
         /* define accessors */
         public function set execFunction(instructions:Function)
         {
              execFunc = instructions;
         }
         
         public function set buttonMenu(menu:MovieClip)
         {
              btnMenu = menu;
         }
         
    }
    

    In my application .fla file, I have this

    //This is the function that will be executed when the user presses the button
    function autoModeHandler (param:String) {
         
              trace("You pressed the " + param + " button");
              
                                  
    }
    
    init();
    
    masterContainer.menuContainer.Auto.execFunction = Delegate.create(this, autoModeHandler);
    

    The function is successfully "sent" to the class of StandardButton, but without any parameters.  How can I send parameters for the instance of the class with the way I had it built.  Any help is greatly appreciated!

    Thank you for your time and help!

    You can pass parameters as you're passing that work.  you just need an instance of StandardBtn.

Maybe you are looking for

  • Satellite L650 ventilation Grill - 1 Q 5 CPU was not pushed

    Found this post in a locked thread: vinh31Messages: 16 +.Join date: 07/26/10Re: Satellite A300-1ID - CPU high temperature +.Posted the: August 19, 2010 10:37 am in response to: Xardas in response to: XardasXardas wrote: Hi + vinh31, +.+ I would recom

  • Print spooler is not

    I only had the default printers on Windows XP and my Canon MG6150 installed. All printers on the printers/faxes folder in Control Panel have dissappeared can anyone provide the answer so I can print again

  • Cabinet.dll is not designed to run on Windows or it contains an error

    I just got a message arrived to the top when I am logged in and do not understand!  Bed C:\Windows\system32\Cabinet.dll is not designed to run on Windows or it contains an error.  Try to install the program by using the original installation media or

  • Remove my name from emails

    I want to remove my name, which shows when someone opens an email me

  • Postgres vFabric requirements

    Hi allMy company is looking at the migration of Oracle and Postgres, now I know it there vFabric Postgres but looking at the pre-reqs should you run vCloud Director, Center of automation or can be installed without?Also what is the level of support y