How to change a parameter with script

Hi to All,
Is it possible change to TRUE the Parameter "07_DICTIONARY_ACCESSIBILITY" with a script ?
If Yes, how can perform this ?
Thank You and Best Regards.
Gaetano

About 07_DICTIONARY_ACCESSIBILITY

Similar Messages

  • How to change the Default login script and the USER login script in Netware3.12

    I need to cut down the disk map from Neware 3.12 in Win98 client's PC.
    please tell me
    how to change the Default login script and the USER login script in
    Netware3.12 ?
    Or is there any other ways to do this thing?
    Thanks a lot!

    On 4/6/2006 [email protected] wrote:
    > how to change the Default login script and the USER login script in
    > Netware3.12 ?
    Please repost in the discontinued.forums.
    Edison Ortiz
    Novell Product Support Forum SysOp
    (No Email Support, Thanks !)

  • How to change timeout parameter value in Oracle 10g R2

    Anyone knows how to change timeout parameter value in Oracle 10g Database R2?

    Waheed Azhar wrote:
    actually i am getting ORA-01013 exception which directly relates to the timeout value but i think it's hidden parameter...What makes you think it's a hidden parameter?
    A search of MetaLink for that error turns up a number of hits, most of which a very situational specific. Exactly what are you doing when you get this error? Are you connecting over an ODBC connection? Are you getting it on a connection request? At db shutdown? During a long-running query?

  • How to change a connection with the database in Runtime?

    How to change a connection with the database in Runtime?
    My connection was made using ADF Business component (ApplicationModule).
    ADF Swing.
    JDeveloper Studio 11.1.1.4.0.

    When deploying ADF applications with database connection, you should be using JDBC data sources configured in the weblogic server.
    You could change the JDBC data sources to a different DB instance or location - by changing the JDBC data source and restarting the weblogic server.
    For more details, check
    http://techiecook.wordpress.com/2010/12/02/oracle-weblogic-adf-datasources/
    Thanks,
    Navaneeth

  • How to change USE_INDIRECT_BUFFERS parameter

    Hi,
    on 10g R2 :
    how to change USE_INDIRECT_BUFFERS parameter :
    SQL> alter system set USE_INDIRECT_BUFFERS=TRUE scope=spfile;
    alter system set USE_INDIRECT_BUFFERS=TRUE scope=spfile
    ERROR at line 1:
    ORA-02065: illegal option for ALTER SYSTEMThank you.

    1. Create pfile from Spfile
    2. Edit your pfile, put the line USE_INDIRECT_DATA_BUFFERS=TRUE there
    3. Create spfile from pfile

  • How to change stored procedure with Table Valued Parameter

    I am not sure how to change the normal stored procedure with Table Value Parameter.Do I have to create a separate Table or do I have to create a datatype. Can you please help me with this
    ALTER PROCEDURE [dbo].[uspInsertorUpdateINF]
    @dp_id char(32),
    @dv_id char(32),
    @em_number char(12),
    @email varchar(50),
    @emergency_relation char(32),
    @option1 char(16),
    @status char(20),
    @em_id char(35),
    @em_title varchar(64),
    @date_hired datetime
    AS
    BEGIN
    SET NOCOUNT ON;
    MERGE [dbo].[em] AS [Targ]
    USING (VALUES (@dp_id, @dv_id , @em_number, @email, @emergency_relation, @option1, @status, @em_id, @em_title, @date_hired))
    AS [Sourc] (dp_id, dv_id, em_number, email, emergency_relation, option1, status, em_id, em_title, date_hired)
    ON [Targ].em_id = [Sourc].em_id
    WHEN MATCHED THEN
    UPDATE
    SET dp_id = [Sourc].dp_id,
    dv_id = [Sourc].dv_id,
    em_number = [Sourc].em_number,
    email = [Sourc].email,
    emergency_relation = [Sourc].emergency_relation,
    option1 = [Sourc].option1,
    status = [Sourc].status,
    em_title = [Sourc].em_title,
    date_hired = [Sourc].date_hired
    WHEN NOT MATCHED BY TARGET THEN
    INSERT (dp_id, dv_id, em_number, email, emergency_relation, option1, status, em_id, em_title,date_hired)
    VALUES ([Sourc].dp_id, [Sourc].dv_id, [Sourc].em_number, [Sourc].email, [Sourc].emergency_relation, [Sourc].option1, [Sourc].status, [Sourc].em_id, [Sourc].em_title, [Sourc].date_hired);
    END;

    It's not clear how you would change the procedure. But assuming that you want to replace the existing scalar parameters with tabular input, this is how you would do it. You first create a table type:
    CREATE TYPE  Insertor_type AS TABLE
        (dp_id                char(32),
         dv_id                char(32),
        em_number            char(12),
        email                varchar(50),
        emergency_relation   char(32),
        option1              char(16),
        status               char(20),
        em_id                char(35),
        em_title             varchar(64),
        date_hired           datetime)
    Then you change the procedure header:
    ALTER PROCEDURE [dbo].[uspInsertorUpdateINF] @tvp Insertor_type READONLY AS
    And finally you change the USING clause:
       USING (SELECT dp_id, dv_id , em_number, email, emergency_relation, option1, status, em_id, em_title, date_hired
              FROM   @tvp) AS [Sourc] ON [Targ].em_id = [Sourc].em_id
    The rest is fine as it is.
    Erland Sommarskog, SQL Server MVP, [email protected]

  • How can i change brush type with script?

    I can already set the width, size of it, but i cant find out how to change the type. Even script listener dont produce the needed code for it.

    Never mind. I managed to do it, script listener did produce the code, i just didnt find it at first. I meant brush style by type.

  • How to change NLS_NUMERIC_CHARACTERS parameter for OWB SQLLDR mapping

    Hi,
    How to change the NLS_NUMERIC_CHARACTERS database paramater for my SQLLDR mapping?
    I have an input flat file which has numeric data with ',' as decimal separator means NLS_NUMERIC_CHARACTERS setting as ',.'
    However in my target oracle schema, the decimal separator is '.' which has NLS parameter set as NLS_NUMERIC_CHARACTERS='.,'
    My OWB version is 10.2.
    When I checked the configuration parameters of the sql loader mapping and the flat file operator, There is facility to change language, but not NLS_NUMERIC_CHARACTERS setting.
    I do not want to change the NLS_NUMERIC_CHARACTERS setting in my database as there are many other projects which will get impacted.
    We got a work around as below using external table & premap procedure. But as I have many mappings already developed, It is not possible to use this workaround.
    - I can use premapping procedure with external tables to populate.
    - NLS_NUMERIC_CHARACTERS setting can be changed using procedure for that particular session.
    Is there a way to change NLS_NUMERIC_CHARACTERS setting only for that particular mapping/mapping session?
    Thanks,
    SriGP

    At this moment , this is not possible . You can see metalink note ID 268906.1.
    It says:
    Currently, external tables always use the setting of NLS_NUMERIC_CHARACTERS
    +at the database level.+
    Cheers
    Marisol

  • How to change COMPATIBLE parameter while creating the database using DBCA

    I have installed 10.2.01.0 on centos 4.7
    Now i want to create database with COMAPTIBLE parameter 9.2.0.1
    I m trying to create database through DBCA, changed the initialization parameter COMAPTIBLE to 9.2.0.1.
    But gives me error
    ORA-19583: conversation termintated to error
    ORA-19870: error reading backup peice /opt/oracle/assistants/dbca/templates/Seed_Database.dfb
    ORA-00600: internal error code,arguments: [krbrckhr_compressed],[opt/oracle/assistants/dbca/templates/Seed_Database.dfb],[29],[30],[11420],[],[],[]
    ORA-06512: at "SYS.X$DBMS_BACKUP_RESTORE", line 5149
    ORA-06512: at line 16
    if i dont change the value of COMPATIBLE parameter then its running perfactly...
    But i have to set compatible parameter as 9.2.0.1....
    Can anybody tell me how to create database using 10g R2- 10.2.0.1.0 with compatible parameter 9.2.0.1

    Thank you for your response.
    I have tried that opting.
    After creating the database with COMAPTIBLE parameter 10.2.0.1.0 changed that parameter in init.ora file to 9.2.0 and start the database.
    But at that time getting
    ORA-00201: contorl file version 10.2.01.0 incompatible with ORACLE version 9.2.0.0
    ORA-00202: control file '/opt/oracle/oradata/ORCL/control01.ctl'

  • How to change the parameter's value of Oracle Forms Applet?

    Hello,
    I'm working with Oracle Forms 10.1.2.3.0 and JRE 1.6.0_14, we got some performance issues and we think are related with Java, so we enabled Java trace and we realized that every time user moves the cursor from one item to another, the applet sends a request to the server. This is the request.
    network: Connecting http://server/forms/lservlet;jsessionid=e53bb50b2f95ecb357451bf21a291367cc1747d2d9956b3ba1c4a05916d87d34.e34LaheTahaLai0LaxyLbN4ObxqTe6fznA5Pp7ftolbGmkTy with proxy=DIRECT
    I want to disable these connections as Sun states that sometimes they are not needed (not sure if this is the case but we want to test it).
    I got a possible answer from a Sun forum, the possible fix is to set the following property to false:
    <APPLET ...>
    <PARAM name="codebase_lookup" value="false">
    </APPLET>
    But I don't know how to pass that parameter to Oracle Forms applet.
    Does anybody know?
    Thanks.

    You can try passing the parameter in the HTML template file ... for example in the $ORACLE_HOME/forms/server/basejpi.htm
    i.e.
    <PARAM NAME="TYPE" VALUE="%jpi_mimetype%">
    <PARAM NAME="CODEBASE" VALUE="%codebase%">
    <PARAM NAME="CODE" VALUE="oracle.forms.engine.Main" >
    <PARAM NAME="ARCHIVE" VALUE="%archive%" >
    <PARAM name="codebase_lookup" value="false">
    I have never done it myself so I do not know if it would be recognized though.

  • How to change the constant with which you multiplied a column

    Hello,
    I'm making a spreadsheet with prices in Dollars and then converting them to Euros. Obviously the exchange rate changes all the time, so I was wondering how I could multiply my column A of dollar prices by the current exchange rate to get my column B of Euro prices and then change the prices when the exchange rate changes.
    Is it possible to just give the new exchange rate so that my numbers in column B automatically change?
    I know I can just always click c1 = b1*1,34 (for example) and then fill down, and then at a later date remove all the prices again and do C1= B1*1,30 and fill down again but I was wondering whether there was an easier way to change the Constant with which you previously multiplied a column.
    Thanks for your help, I hope my question was sort of understandable!
    I've looked but couldn't find a similar post, sorry if I missed it!
    Larissa

    LarissaG wrote:
    Hi,
    This definitely helps! But is a bit inconvenient when you have lots and lots of rowns in Column A.
    Oh well! I better get started.
    Thank you!
    That's because you are thinking about typing formulas into each an every row by hand. That would be horrendously inefficient and people would despise designing spreadsheets if it had to be done that way.
    Using Jerry's example as the starting point,
    Type the formula =B3*C$1 into cell C3 and hit enter.
    Select cell C3
    Drag down on the little circle at the bottom right corner of the selection box to complete the column. Alternatively, you can Copy then select the rest of the column and Paste.

  • How to change flash size with ac3?

    I want to change flash size with xml. Sample config.xml
    <genGenis>300</genGenis>
    <genYuksek>100</genYuksek>
    My flash read xml and change size to 300 * 100
    After working in a flash I want to change the default values. Is this possible?

    Have you worked with XML before? You're going to need to load that XML file and wait for it to complete. After you do that, are you using layout logic based on these values to create your content? Meaning do you have code in place to realize you have (as you said) 500x200 space so your code is able to use the space available effectively? Or do you just expect the content of the SWF to scale automagically?
    As for the loader, you can use a simple URLLoader to load the external XML file. Here's a quick Adobe code snippit and explaination on how to load it:
    http://help.adobe.com/en_US/as3/dev/WS5b3ccc516d4fbf351e63e3d118a9b90204-7e6a.html
    Once you have the XML in an XML object you can just access the value via the XML variable name you make (e.g. myXML) with the name of the node while getting its text value. In your case you'll need to convert it to a Number because you may want the flexibility of using fractions (e.g. 1.5, 500.25, etc). So you'd need to case the value to a number. So to get the width it'd be like: var myWidth:Number = Number(myXML.genGenis.text()); and same for height just changing the variable and node name as needed.
    Now that you have your values you can write layout code to use the numbers and handle the content creation yourself.
    If you don't do that, as Andrei1 mentioned you'll need to affect the object embedded directly using ExternalInterface (Flash AS3 talking to the webpages JavaScript) requesting the object be resized to the new size.
    You'll want to make sure your stage.scaleMode = StageScaleMode.EXACT_FIT; or stage.scaleMode = StageScaleMode.NO_BORDER; so your SWF content is "stretched" to the size you request. Exact fit will allow the content to distort if necessary to fill the width and height. No border will scale the content to the size specified but will maintain the aspect ratio. It's up to you whichever you want.
    If you have any specific questions on any of this just ask.

  • Phone restore with friend comp  store id as friend mail how to change, phone restore with friend comp  store id as friend mail how to change

    phone restore with friend computer in app  store id as friend mail how to change to my apple id
    please help thanks
    thiru

    You can tap on the id in Settings > iTunes & App Store an dlog out of it and you can then log in with your account. If you copied any of your friend's content then that content will tied to their id.

  • How to change date parameter field in crystal from YYYY-MM-DD to DD/MM/YY

    Hi
    I want to change a Parameter field in Crystal report from YYYY-MM-DD format to DD/MM/YY format

    >
    Sukhi Singh wrote:
    > Hi
    > I want to change a Parameter field in Crystal report from YYYY-MM-DD format to DD/MM/YY format
    What do you mean by Crystal Report?  Are you sure you posted this to the correct forum?

  • How to change any parameter in gradient?

    Why I can not change any parameter in an existing gradient?
    For example: one pageitem have gradient and i can see (in vba locals) its parameters:
    FillColor.Angles
    FillColor.Matrix
    FillColor.Origin
    FillColor.Length
    But nothing change.

    setListVOBoundContainerColumn method can be used on poplist bean to set value from current row of table dynamically.
    Regards,
    Ram

Maybe you are looking for