grant for dbms_metadata.get_ddl on objects in another schema

In Oracle 11 g R2, I use dbms_metadata.get_ddl to get the DDL to another schema, but I got an error:

ORA-31603: object not found 'IS_SNMP_DATA' of type TABLE in the schema "TXV.

that grant is necessary for this package to get from another schema ddl?
I tried with authid current_user (that I found on google), but no result...

See the following example:

SQL> create user us_one identified by us1;
User created.

SQL> grant connect, resource to us_one;
Grant succeeded.

SQL> create user us_two identified by us2;
User created.

SQL> grant connect, resource to us_two;
Grant succeeded.

SQL> conn us_one/us1
Connected.
SQL> create table t (id number);

Table created.

SQL> grant select on t to us_two;
Grant succeeded.

SQL> conn / as sysdba
Connected.

SQL> grant execute on dbms_metadata to us_two;

Grant succeeded.

SQL> conn us_two/us2
Connected.

SQL> select dbms_metadata.get_ddl('TABLE','T','US_ONE') from dual;
ERROR:
ORA-31603: object "T" of type TABLE not found in schema "US_ONE"
ORA-06512: at "SYS.DBMS_SYS_ERROR", line 105
ORA-06512: at "SYS.DBMS_METADATA", line 2806
ORA-06512: at "SYS.DBMS_METADATA", line 4333
ORA-06512: at line 1

no rows selected

SQL> conn / as sysdba
Connected.
SQL> grant select_catalog_role to us_two;

Grant succeeded.

SQL> conn us_two/us2
Connected.
SQL> select dbms_metadata.get_ddl('TABLE','T','US_ONE') from dual;

DBMS_METADATA.GET_DDL('TABLE','T','US_ONE')
--------------------------------------------------------------------------------

  CREATE TABLE "US_ONE"."T"
   (    "ID" NUMBER
   ) PCTFREE 10 PCTUSED 40 INITRA

SQL> 

Tags: Database

Similar Questions

  • With the help of the TYPE operator % on objects in another schema

    Suppose I have the following architecture:
    * A schema called APP_SCHEMA (for example), which contains all applications level PL/SQL packages that contain a business application logic
    * A data schema, called DATA_SCHEMA (for example), that contains the schema objects that are referenced by the PL/SQL in APP_SCHEMA
    Suppose I create a simple procedure like this in the APP_SCHEMA:
    CREATE OR REPLACE PROCEDURE test_proc(pVar IN DATA_SCHEMA.TABLENAME.TABLECOLUMN%TYPE)
    AS
    BEGIN
         DBMS_OUTPUT.PUT_LINE(pVar);
    END;
    /{code}
    For this simplified procedure I get the following error:
    {code:java}1/25     PLS-00201: identifier 'DATA_SCHEMA.TABLENAME' must be declared{code}So, my basic question is how do I use the %TYPE operator to reference objects in another schema?
    
    Other Pertinent info:
    * Windows Server 2003
    * Oracle Database 10gR2 (10.2.0.3)
    Thanks!                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                

    Its almost certainly a problem of privileges.

    I can create a test procedure based on the same script that compiles successfully.

    Verify that your user can access the table. Might need to have to grant access directly, rather than in a role.

    Published by: Keith Jamieson on August 25, 2008 17:51
    typo fixed

  • reading of the objects in another schema schema

    My requirement is to create a schema and grant privileges to read all objects in another main schema, including the functions and procedures. creating a role and assigning it to the schema will read or select the tables, but she will not allow the user to see the description of a function, or a procedure. can you please tell me what are my options. Thank you.

    Hello

    Yes you can GRANT SELECT privilege to allow access to Tables / views, and GRANT EXECUTE privilege on the procedures in another schema.

    You can also CREATE SYNONYM of these Tables in order to hide their location. There is a way to ensure the transparency of the location, otherwise use views or procedures.

    These links can give you a few tracks on the transparency of the situation and manage privileges:

    http://download.Oracle.com/docs/CD/B28359_01/server.111/b28310/ds_admin006.htm

    http://download.Oracle.com/docs/CD/B28359_01/network.111/B28531/authorization.htm#DBSEG004

    Hope this helps.
    Best regards
    Jean Valentine

  • Expdp tables a schema and all the objects in another schema

    Hello

    Is there a way we can export tables to a diagram and everything else a diagram? I tried below, but none of them did the job.

    Table = A.Table1, A.table2

    schemas = b, c

    include = table: "in (a. 'Table1'., 'Table2')" "

    schemas = b, c

    Thank you

    The datapump has several modes:

    "Full import mode.

    "Schema Mode".

    "Table mode".

    'Space Mode '.

    "Transportable Tablespace mode."

    It seems that datapump cannot be in one mode at a time.

    So you have to choose the mode of table first, then for the following export select pattern mode.

  • Referencing Tables in another schema

    APEX 4

    http://i.imgur.com/WDwSC.jpg

    Is it true that you cannot reference another schema objects (i.e. ONLY the scheme of the application's default analysis)?

    I also noticed that this button "Requester" will lead you to QB page where only the analysis scheme appears.

    Thank you

    RalphK,

    Not true. Make sure that your analysis schema has grants appropriate to perform the action you want on an object in another schema. If this is not enough and you need access to another scheme of your workspace and then talk to your apex admins and it adds the schema to your workspace. Workspaces can be mapped to multiple schemas. It is not a one to one relationship.

    Thank you

    Janet Tyson

  • Another question about dbms_metadata.get_ddl

    Hello

    Recorded in as 'sys as sysdba' I tried to get the DDL for the EMP table in the SCOTT schema. Here is the output I got:
      1* select scott.dbms_metadata.get_ddl('TABLE', 'EMP') from dual
    SQL> /
    select scott.dbms_metadata.get_ddl('TABLE', 'EMP') from dual
           *
    ERROR at line 1:
    ORA-00904: "SCOTT"."DBMS_METADATA"."GET_DDL": invalid identifier
    Remove the reference to SCOTT, we get another error (no surprise):
    ORA-31603: object "EMP" of type TABLE not found in schema "SYS"
    Question: How the ADMINISTRATOR bring the DDL for a table without having to sign in as a user that owns the schema?

    Thank you

    John.

    He must inform the owner of this object when running DBMS_METADATA of SYS.

    If we describe DBMS_METADATA

    FUNCTION GET_DDL RETURNS CLOB
     Argument Name                  Type                    In/Out Default?
     ------------------------------ ----------------------- ------ --------
     OBJECT_TYPE                    VARCHAR2                IN
     NAME                           VARCHAR2                IN
     SCHEMA                         VARCHAR2                IN     DEFAULT
     VERSION                        VARCHAR2                IN     DEFAULT
     MODEL                          VARCHAR2                IN     DEFAULT
     TRANSFORM                      VARCHAR2                IN     DEFAULT
    

    So there must be another SCHEMA parameter when running DBMS_METADATA of SYS.

  • grant dbms_metadata.get_ddl wanted

    Hi all! I need help. I want to get in clob a ddl of an object. What I am doing wrong?

    Select the owner, constraint_name from dba_constraints where constraint_name = "TOME_KYTE_IS_UNIQUE";


    OWNER CONSTRAINT_NAME
    TOMKYTE TOME_KYTE_IS_UNIQUE




    Create procedure tomkyte.testprint as

    CLOB text;

    Start
    Select DBMS_METADATA. GET_DDL ('CONSTRAINT', 'TOME_KYTE_IS_UNIQUE', 'TOMKYTE')
    in the text of the double;

    dbms_output.put_line('1');

    end;

    -----
    procedure created

    -----
    Start
    tomkyte.testprint; -I plugged as tomkyte
    end;



    ORA-31603: object "TOME_KYTE_IS_UNIQUE" of type CONSTRAINT was not found in the schema TOMKYTE

    This who should I agree with tom that he can get atleast its own objects ddl?

    Thanks in advance.

    Instead of DBA_constraints you can use USER_CONSTRAINTS and see how it works

    create or replace procedure tomkyte.buildConstraint(
    cons_name varchar2,
    cons_owner varchar2,
    cons_new_owner varchar2) AS
    
    stat clob;
    e varchar2(4000);
    var varchar2(300);
    begin
    select DBMS_METADATA.GET_DDL('*CONSTRAINT*',cons_name,cons_owner) into stat from dual;
    dbms_output.put_line(stat);
    end;
    

    Try to replace the CONSTRAINT by REF_CONSTRAINT

    Thnks to metalink

    Published by: Maran Viswarayar Sep 12, 2008 17:26

  • strange dbms_metadata.get_ddl TS DDL

    11.2.0.2 Oracle 64-bit

    Oracle Linux 5

    In another issue (isn't that where we find always the uh, interesting things?)  I came across something odd about a definition of TS returned by dbms_metadata.  Launched a couple of other requests for related information together.  Note that the supposed definition of the ts includes an alteration of a redo log file.

    Sign me - stumped.

    SQL > SELECT DBMS_METADATA. GET_DDL ('TABLESPACE', 'PSUNDOTS') of double;

    DBMS_METADATA. GET_DDL ('TABLESPACE', 'PSUNDOTS')

    --------------------------------------------------------------------------------

    CREATE UNDO TABLESPACE "PSUNDOTS" DATA FILE

    ' / u01/oradata/fs91dmo/psundots01.dbf' 314572800 SIZE

    AUTOEXTEND ON NEXT 5242880 MAXSIZE 32767M.,

    ' / u01/oradata/fs91dmo/redo03.log' 314572800 SIZE

    AUTOEXTEND ON NEXT 5242880 MAXSIZE 32767M

    BLOCKSIZE 8192

    EXTENT MANAGEMENT LOCAL AUTOALLOCATE

    ALTER DATABASE DATAFILE

    ' / u01/oradata/fs91dmo/psundots01.dbf' 3145728000 RESIZE

    ALTER DATABASE DATAFILE

    ' / u01/oradata/fs91dmo/redo03.log' 3145728000 RESIZE

    1 selected line.

    SQL > select file_name

    2 of dba_data_files

    3 where nom_tablespace = 'PSUNDOTS ';

    FILE_NAME

    ---------------------------------------------

    /U01/oradata/fs91dmo/psundots01.dbf

    1 selected line.

    SQL > select group #,.

    2 Member

    3 v $ logfile

    4 order of 1,2;

    GROUP # MEMBERS

    ---------- ---------------------------------------------

    1 /u01/oradata/fs91dmo/redo01.log

    2 /u01/oradata/fs91dmo/redo02.log

    3 /u01/oradata/fs91dmo/redo03.log

    3 selected lines.

    SQL >--

    SQL > spo off

    Hello

    It is clearly a bug:

    Bug 10177856 - DBMS_METADATA.get_ddl ('tablespace',...) includes wrongly tempfiles and redo-log online (Doc ID 10177856.8)

    Kind regards

    Bashar

  • On DBMS_Metadata.Get_DDL

    I'm curios to know why Oracle does not always provide a feature which would export the script to create table without name of the tablespace, PCT, double qoutes. It should give the script table, indexes and constraints of the scripts so that if someone is running this script on another schema it should create the necessary table directly.

    user10566312 wrote:

    I'm curios to know why Oracle does not always provide a feature which would export the script to create table without name of the tablespace, PCT, double qoutes. It should give the script table, indexes and constraints of the scripts so that if someone is running this script on another schema it should create the necessary table directly.

    They offer such a function: GET_DDL.

    See the DBMS_METADATA package in the packages doc and Types.

    Table 74-22 SET_TRANSFORM_PARAM: transform parameters for the transformation of the DDL

    http://docs.Oracle.com/CD/B28359_01/AppDev.111/b28419/d_metada.htm#BGBJBFGE

    Works fine for me:

    EXEC DBMS_METADATA. SET_TRANSFORM_PARAM (dbms_metadata. SESSION_TRANSFORM, 'TABLESPACE', FALSE)

    SELECT DBMS_METADATA. GET_DDL ('TABLE', 'EMP', 'SCOTT') FROM DUAL

    "CREATE TABLE"SCOTT" EMP.
    ('EMPNO' NUMBER (4,0),)
    'ENAME' VARCHAR2 (10),
    VARCHAR2 (9) "JOB."
    "MGR" NUMBER (4,0).
    "HIREDATE" DATE,
    "SAL" NUMBER (7.2).
    NUMBER (7.2) "COMM"
    "DEPTNO" NUMBER (2.0).
    'PK_EMP' CONSTRAINT PRIMARY KEY ('EMPNO')
    BY USING THE PCTFREE 10 INITRANS INDEX 2 MAXTRANS 255 CALCULATE STATISTICS ENABLE,
    "FK_DEPTNO' FOREIGN KEY ('DEPTNO') CONSTRAINT
    REFERENCES 'SCOTT '. "" ENABLE DEPT "("DEPTNO")
    ) CREATION OF IMMEDIATE SEGMENT
    PCTFREE, PCTUSED, INITRANS 40 10 1 MAXTRANS 255 NOCOMPRESS SLAUGHTER

    If you do not want those segment attributes, then just disable them too

    EXEC DBMS_METADATA. SET_TRANSFORM_PARAM (dbms_metadata. SESSION_TRANSFORM, 'TABLESPACE', FALSE)

    SELECT DBMS_METADATA. GET_DDL ('TABLE', 'EMP', 'SCOTT') FROM DUAL

    EXEC DBMS_METADATA. SET_TRANSFORM_PARAM (dbms_metadata. SESSION_TRANSFORM, "SEGMENT_ATTRIBUTES", FALSE)

    SELECT DBMS_METADATA. GET_DDL ('TABLE', 'EMP', 'SCOTT') FROM DUAL

    "CREATE TABLE"SCOTT" EMP.
    ('EMPNO' NUMBER (4,0),)
    'ENAME' VARCHAR2 (10),
    VARCHAR2 (9) "JOB."
    "MGR" NUMBER (4,0).
    "HIREDATE" DATE,
    "SAL" NUMBER (7.2).
    NUMBER (7.2) "COMM"
    "DEPTNO" NUMBER (2.0).
    ACTIVATE THE KEY PRIMARY CONSTRAINT 'PK_EMP' ('EMPNO'),
    "FK_DEPTNO' FOREIGN KEY ('DEPTNO') CONSTRAINT
    REFERENCES 'SCOTT '. "" ENABLE DEPT "("DEPTNO")
    )

  • Where to apply for ObjectGroup on an object persist with a table structure? Level line or set of table?

    Hi, expert,

    We have a class like this structure to store a table like structure in the persistent store:

    class {} table

    Vector lines; vector line, each line is another vector for the columns.

    PrimaryKeyMaps Hashtable;

    String tableName;

    }

    We know that we should use ObjectGroup to save persisent object handle. Right now, I use the group for each line vector object (all columns in a row are grouped). If each line would consume only a handful of persistent object. I guess I should group the primaryKeyMaps as well. However I wonder if I need to group them at the level of the entire table or not, because if there are 50 rows to the table, I would use 50 handler object persistent for all these lines. Managers how persisetent demand would be reasonably use in general? What is a good balance between performance and keeping the persistent object handles?

    I use a very similar structure to store Tables in PersistentStore, and I grouped by row (I do not use Group objects, I essentially to serialize the row)... But that's all.  And I have a large number of lines in a number of tables, certainly more than 10,000 usually.  Works very well.

    Persistent used to be a big problem, but I think you'll find that it isn't now, so unless you are targeting devices used (pre OS 4.6), or you have more than 10 s of thousands of lines, then I think that the structure, you are currently to assistance is therefore probably good enough.  And if you become big, you should probably move the data to SQLite.

    I'm a little concerned by the hash table you mind, I have not this and it is more than double the number of persistent Handles because you have an object for the key and the value.  have you looked to optimize this, perhaps using an intHashTable to kill using object?

    But if you are looking for where you will not store 10s of thousands and thousands of lines, I think what you do is very well.

  • Place the object in another context

    Hello everyone. I want to cut the object from one background and put in another. I use the lasso tool to select the area, and then clear the selected area, so I can remove the background and usind the selection tool place the object in another context, but it comes in a white frame in another context. Do I did wrong?

    Thank you for your help.

    Odd. You use the tool move after you have made your choice? (Also make sure that the desired layer is active in the Panel layers, when you make your selection and move it.)

  • get the table script using dbms_metadata.get_ddl but with clob field

    Thus, Oracle 11g R2...
    I use dbms_metadata.get_ddl for table scripts and it works fine...

    now, I have a table with clob field, and it does not work... I got an error "missing a closing parenthesis (ora-0907) '...
    I could paste a script I had, but I don't think that it makes no sense...

    does anyone have an experience on the use of this package on clob tables?


    TNX

    See this code.

    DECLARE
      myddl clob;
      PROCEDURE print_clob(p_clob in clob) as
        l_offset number default 1;
      BEGIN
        loop
          exit when l_offset > dbms_lob.getlength(p_clob);
          dbms_output.put_line(dbms_lob.substr(p_clob, 255, l_offset));
          l_offset := l_offset + 255;
        end loop;
      END print_clob;
      FUNCTION get_metadata return clob is
        h   number;
        th  number;
        doc clob;
      BEGIN
        h := dbms_metadata.open('TABLE');
        dbms_metadata.set_filter(h, 'SCHEMA', 'HR');
        dbms_metadata.set_filter(h, 'NAME', 'EMPLOYEES');
        th := dbms_metadata.add_transform(h, 'MODIFY');
        th := dbms_metadata.add_transform(h, 'DDL');
        --dbms_metadata.set_transform_param(th,'SEGMENT_ATTRIBUTES',false);
        doc := dbms_metadata.fetch_clob(h);
        dbms_metadata.CLOSE(h);
        return doc;
      END get_metadata;
    BEGIN
      myddl := get_metadata;
      print_clob(myddl);
    END;
    

    This procedure of print_ddl I took of the documentation.
    Use of the long VALUE. See, in the first example out put is truncated.

    SQL> SELECT dbms_metadata.get_ddl('TABLE','EMP','SCOTT') FROM dual;
    
    DBMS_METADATA.GET_DDL('TABLE','EMP','SCOTT')
    --------------------------------------------------------------------------------
    
      CREATE TABLE "SCOTT"."EMP"
       (    "EMPNO" NUMBER(4,0),
            "ENAME" VARCHAR2(10),
    
    SQL> set long 10000
    SQL> /
    
    DBMS_METADATA.GET_DDL('TABLE','EMP','SCOTT')
    --------------------------------------------------------------------------------
    
      CREATE TABLE "SCOTT"."EMP"
       (    "EMPNO" NUMBER(4,0),
            "ENAME" VARCHAR2(10),
            "JOB" VARCHAR2(9),
            "MGR" NUMBER(4,0),
            "HIREDATE" DATE,
            "SAL" NUMBER(7,2),
            "COMM" NUMBER(7,2),
            "DEPTNO" NUMBER(2,0),
             CONSTRAINT "PK_EMP" PRIMARY KEY ("EMPNO")
    
    DBMS_METADATA.GET_DDL('TABLE','EMP','SCOTT')
    --------------------------------------------------------------------------------
      USING INDEX PCTFREE 10 INITRANS 2 MAXTRANS 255 COMPUTE STATISTICS
      STORAGE(INITIAL 65536 NEXT 1048576 MINEXTENTS 1 MAXEXTENTS 2147483645
      PCTINCREASE 0 FREELISTS 1 FREELIST GROUPS 1 BUFFER_POOL DEFAULT)
      TABLESPACE "USERS"  ENABLE,
             CONSTRAINT "FK_DEPTNO" FOREIGN KEY ("DEPTNO")
              REFERENCES "SCOTT"."DEPT" ("DEPTNO") ENABLE
       ) PCTFREE 10 PCTUSED 40 INITRANS 1 MAXTRANS 255 NOCOMPRESS LOGGING
      STORAGE(INITIAL 65536 NEXT 1048576 MINEXTENTS 1 MAXEXTENTS 2147483645
      PCTINCREASE 0 FREELISTS 1 FREELIST GROUPS 1 BUFFER_POOL DEFAULT)
      TABLESPACE "USERS"
    
    SQL> SET LINESIZE 132
    SQL> SET pagesize 0
    SQL> SET LONG 1000000
    SQL> /
    
      CREATE TABLE "SCOTT"."EMP"
       (    "EMPNO" NUMBER(4,0),
            "ENAME" VARCHAR2(10),
            "JOB" VARCHAR2(9),
            "MGR" NUMBER(4,0),
            "HIREDATE" DATE,
            "SAL" NUMBER(7,2),
            "COMM" NUMBER(7,2),
            "DEPTNO" NUMBER(2,0),
             CONSTRAINT "PK_EMP" PRIMARY KEY ("EMPNO")
      USING INDEX PCTFREE 10 INITRANS 2 MAXTRANS 255 COMPUTE STATISTICS
      STORAGE(INITIAL 65536 NEXT 1048576 MINEXTENTS 1 MAXEXTENTS 2147483645
      PCTINCREASE 0 FREELISTS 1 FREELIST GROUPS 1 BUFFER_POOL DEFAULT)
      TABLESPACE "USERS"  ENABLE,
             CONSTRAINT "FK_DEPTNO" FOREIGN KEY ("DEPTNO")
              REFERENCES "SCOTT"."DEPT" ("DEPTNO") ENABLE
       ) PCTFREE 10 PCTUSED 40 INITRANS 1 MAXTRANS 255 NOCOMPRESS LOGGING
      STORAGE(INITIAL 65536 NEXT 1048576 MINEXTENTS 1 MAXEXTENTS 2147483645
      PCTINCREASE 0 FREELISTS 1 FREELIST GROUPS 1 BUFFER_POOL DEFAULT)
      TABLESPACE "USERS"
    
    SQL>
    
  • Move an object in another to go to the next section, need a script to do this.

    Hello, me and a friend worked on a game called 'avoid '.

    Where you are supposed to avoid objects and enemies.

    Right now I use my mouse to test the game and continue on this subject.

    But the plan is to make a "Drag and drop" object that we are supposed to move to the finish line.

    Basically, the problem is that I can't find decent ways to make this happen...

    When this 'object' hits the other "object" (finish line), we proceed to the next section.

    Anyone who can help me?... should be a line simple and short code, I think, by experience.

    I found on my own explore similar problems without being able to fix it for my purpose:

    "An object hits another, it goes to another framework."

    097 http://www.bigresource.com/Flash-One-Object-hits-Another-It-Goes-to-another-Frame--KC3s2ES html#.

    Best regards Rur

    See the properties dropTarget() and hitArea() sprites and clips.

  • Place 3d of an object in another.

    How can I place a 3D object in another?

    Basically, I created a cube in a single layer and one sphere on the other.

    How can I put the sphere inside the cube?

    Kinda like having a home and a person, how do you put the person in the House?

    I tried using the same device for both layers and their merger, but the merger of layers seems to just make things a mess for me. I can't understand where everything is going to be when I merge things.

    It makes sense that two separate layers may not interact on the same level, but I think that merge the layers would put objects in the same 3D space and I couldn't manipulate the objects individually.

    Hello

    You use 3D objects imported through 3D > new layer from 3D file? Or you're having trouble with the stitches that come with the post of Ps (sphere, cube, cylinder, etc.)?

    In CS4, we had to match camera views in order to get the active fusion of 3D layers. In CS5, fusion of 3D layer can be achieved without matching camera views, but may result in what you describe. To make sure the 3D layer disappears from the view on the merger, you will want to explicitly match the camera view from top to the bottom layer first layers. To make this layer to select the 3D albums in the layers panel, select a 3D camera tool (or press N), then in the tool Options bar selects the name of the layer from the bottom of the view 3D: context menu.

    Now select the 3D object tool (or press K), change Position: front in the same place on the tool Options bar. This will guide the 2 layers so that even when spaced apart far they're both in the crosshairs of your merged scene. This example does not intentionally in one object inside another. The sphere is actually pretty little bigger than the cube, but the back later in his scene, and the merged result then the same as seen here.

    I'll see if I can find measures for the position of the objects originally Central easily and keep them in view. Turning on the overlay of the ground plan and using the orthogonal views should help. I know, there was a slight delay in CS4 for fusion 3D postcards, so they don't fight Z, but do not remember if this has been changed to CS5.

    Kind regards

    Steve

  • Can I turn off the change of focus from one object to another?

    Hello.

    I have a game where i control a MC with the arrows on the keyboard, when I click outside of the application flash and back in the MC loses focus. The focus moves to a button in the scene. What I have observed, is that Flash Player has a built-in control, which moves the focus from one element to the other with the arrow keys.

    Is there a way I can disable the change of focus from one object to another?

    Thank you.

    Why you need such a thing...

    Is it true that you lose the focus of your video clip and that's your keyboard listeners do not work?

    And you want to work.

    For this situaton I ideally add my Council key on the stage event listeners and the rest of the creation of the logic accordingly.

Maybe you are looking for

  • Hiroto, javascript fix of ASC.

    Request: Copy page info movement to above the question. I saw a post you had written little JavaScript for injection in a page of ASC via GreaseMonkey.  I use Firefox 47.0 as my web browser. Hiroto (follow-up question) I was wonder if you wanted to w

  • Path and file name of the message is too long to be copied-how fix?

    On Windows 7, TB ver 24.6.0, I use a program called SecondCopy to copy my email when my C drive on my desktop to our file server. I get several messages each day like this one for the copy be saved on our network data sharing: 04/07/2014 21:07:16 - f

  • Problem occurred down the Satellite U200-170

    Hello I am new to this so forgive me if the question was already asked. I just bought a Satellite U200-170, it was the last in the store and I don't didn't want to wait 2 weeks to get the laptop so I bought the showroom model (which is in perfect con

  • ThinkVantage button doesn't work is not started

    Hello I bought a couple of seconds for the W520 hand that accompanies Windows 10. LN two machines you cannot interrupt the start-up with the blue zThinkvantage button. Research I've done seems to point to this remap after Windows is loaded, which doe

  • TOUCHSMART ENVY 15-J003ED - replace no touchscreen

    I have the Touchsmart, Envy 15-J003ED laptop and I cracked the glass of the screen. The screen works fine, but the touchpad function now does not work. I found replacement screens, but I don't want to pay hundreds for the touchscreen I don't use it t