Partitioning of an existing Table using the EXCHANGE PARTITION

Hi all

I have one unpartitioned table I partitioned by Exchange, this table has several indexes and constraints (primary and foreign).

ALTER TABLE notpart_table ADD (
    CONSTRAINT PK_KCESPITI PRIMARY KEY (K_CESP, TIPORD)
        USING INDEX TABLESPACE TBLS_CONTA,
    CONSTRAINT FK_KCONTO_CE FOREIGN KEY (K_CONTO) REFERENCES xxxx (K_CONTO));

CREATE INDEX IX_NFATTURA_CE ON notpart_tab (ANNO_FATTURA, K_REGISTRO, K_REGFA, TIPORD)
    TABLESPACE TBLS_CONTA;




after Create a partitioned Table Destination

notpart_table2, I created the same constraints and indexes defined in notpart_table


When I run


ALTER TABLE notpart_table2
  EXCHANGE PARTITION PART_notpart_table2
  WITH TABLE notpart_table
  WITHOUT VALIDATION
  UPDATE GLOBAL INDEXES;



I get: ora-02266

Why?

Thanks in advance for any help


Post edited by: vigilant Rosario

It is not exactly what you have. Very probably not partitioned table, you are partitioning is the parent to another table table:

SQL > create table tbl1 (id number)
2.

Table created.

SQL > alter table tbl1
2 Add the constraint tbl1_pk
3 primary key
4.

Modified table.

SQL > create table tbl2 (id number)
2.

Table created.

SQL > alter table tbl2
2 Add the constraint tbl1_fk1
3 foreign key
4 references tbl1
5.

Modified table.

SQL > insert into tbl1 values (1)
2.

1 line of creation.

SQL > insert into tbl2 values (1)
2.

1 line of creation.

SQL > create table tbl1_part (id number)
2 partition by range (id)
3 (partition p1 values less than (1000000))
4.

Table created.

SQL >
SQL > alter table tbl1_part
Exchange 2 partition p1
3 with table tbl1
4 without validation
5 update global indexes
6.
with table tbl1
*
ERROR at line 3:
ORA-02266: permit to unique/primary keys in table referenced by foreign keys

SQL >

If so, of the foreign key and recreate it pointing to the partitioned table as parent after finished partitioning the table.

SY.

Tags: Database

Similar Questions

  • Get the 500 error trying to create a table using the REST API

    Hello

    I tried to create a table using the REST API for Business Intelligence Cloud, but I got 500 Internal Server Error for a while now.

    Here are the details that I use to create a table.

    Capture.JPG

    and the json to create the schema that I use is

    [{'Nullable': [false], 'defaultValue': 'dataType' [null],: ['VARCHAR'], 'precision': [0], 'length': [18], 'columnName': ["ROWID"]}]

    , {'Nullable': [true], 'defaultValue': 'dataType' [null],: ['VARCHAR'], 'precision': [0], 'length': [18], 'columnName': ['RELATIONID']},

    {'Nullable': [true], 'defaultValue': 'dataType' [null],: ['VARCHAR'], 'precision': [0], 'length': [18], 'columnName': ['ID']}

    , {'Nullable': [true], 'defaultValue': 'dataType' [null],: ['TIMESTAMP'], 'precision': [0], 'length': [0], 'columnName': ['RESPONDEDDATE']},

    {'Nullable': [true], 'defaultValue': 'dataType' [null],: ['VARCHAR'], 'precision': [0], 'length': [255], 'columnName': ['RESPONSE']},

    {'Nullable': [false], 'defaultValue': 'dataType' [null],: ['TIMESTAMP'], 'precision': [0], 'length': [0], 'columnName': ['SYS_CREATEDDATE']},

    {'Nullable': [false], 'defaultValue': 'dataType' [null],: ['VARCHAR'], 'precision': [0], 'length': [18], 'columnName': ['SYS_CREATEDBYID']},

    {'Nullable': [false], 'defaultValue': 'dataType' [null],: ['TIMESTAMP'], 'precision': [0], 'length': [0], 'columnName': ['SYS_LASTMODIFIEDDATE']},

    {'Nullable': [false], 'defaultValue': 'dataType' [null],: ['VARCHAR'], 'precision': [0], 'length': [18], 'columnName': ['SYS_LASTMODIFIEDBYID']},

    {'Nullable': [false], 'defaultValue': 'dataType' [null],: ['TIMESTAMP'], 'precision': [0], 'length': [0], 'columnName': ['SYS_SYSTEMMODSTAMP']},

    {'Nullable': [false], 'defaultValue': 'dataType' [null],: ['VARCHAR'], 'precision': [0], 'length': [10], 'columnName': ['SYS_ISDELETED']},

    [{'Nullable': [true], 'defaultValue': 'dataType' [null],: ['VARCHAR'], 'precision': [0], 'length': [50], 'columnName': ['TYPE']}]

    I tried this using postman and code, but I always get the following response error:

    Error 500 - Internal server error

    Of RFC 2068 Hypertext Transfer Protocol - HTTP/1.1:

    10.5.1 500 internal Server Error

    The server encountered an unexpected condition which prevented him from meeting the demand.

    I am able to 'get' existing table schemas, delete the tables, but I'm not able to make put them and post operations. Can someone help me to identify the problem, if there is no fault in my approach.

    Thank you

    Romaric

    I managed to create a table successfully using the API - the only thing I see in your JSON which is different from mine is that you have square brackets around your values JSON where I have not. Here is my CURL request and extract my JSON file (named createtable.txt in the same directory as my CURL executable):

    curl u [email protected]: password UPDATED h x ' X-ID-TENANT-NAME: tenantname ' h ' Content-Type: application/json '-binary data @createtable.txt https://businessintell-tenantname.analytics.us2.oraclecloud.com/dataload/v1/tables/TABLE_TO_CREATE k

    [

    {

    'columnName': 'ID',

    'dataType': 'DECIMAL ',.

    'Length': 20,.

    "accuracy": 0.

    'Nullable': false

    },

    {

    'columnName': 'NAME',

    'dataType': 'VARCHAR ',.

    'Length': 20,.

    "accuracy": 0.

    'Nullable': true

    },

    {

    "columnName': 'STATUS."

    'dataType': 'VARCHAR ',.

    'Length': 20,.

    "accuracy": 0.

    'Nullable': true

    },

    {

    "columnName': 'CREATED_DATE."

    'dataType': 'TIMESTAMP '.

    'Length': 20,.

    "accuracy": 0.

    'Nullable': true

    },

    {

    'columnName': 'UPDATED_DATE ',.

    'dataType': 'TIMESTAMP '.

    'Length': 20,.

    "accuracy": 0.

    'Nullable': true

    }

    ]

  • How can I convert an existing table to the ITO

    Hello

    My Oracle version is 10.2.0.4

    Here's my my test_table structure.

    He has 1141580 rows.

    I want to convert to table index. However, there is no secondary indexes.
    How can I convert an existing table to the ITO.

    CREATE TABLE test_table (
       Column1             NUMBER        NOT NULL,
       Column2             DATE          NOT NULL,
       Column3             VARCHAR2(100) NOT NULL,
       Column4             VARCHAR2(8)   NULL,
       Column5             VARCHAR2(40)  NOT NULL,
       Column6             VARCHAR2(3)   NULL,
       Column7             NUMBER        NOT NULL,
       Column8             NUMBER        NULL,
       Column9             VARCHAR2(32)  NULL,
    )
    
    /
    
    
    
    ALTER TABLE test_table
      ADD CONSTRAINT test_table_pk2 PRIMARY KEY (
        Column1,
        Column2
      )
      USING INDEX
        STORAGE (
          INITIAL   30720 K
        )
    
    /
    
    
    ALTER TABLE test_table
      ADD CONSTRAINT test_table_cons1 FOREIGN KEY (
        Column1
      ) REFERENCES test_table2 (
        Column1
      )
    /

    Documentation Oracle say:
    Redefinition of Table online allows you to change the organization from a normal table (heap-organized) to an organized in index table and vice versa.

    For example, you might want to try.

  • Update a table using the clause

    Hello

    I want to update a table using the selected values.

    Cases in the sample:


    create table as empsalary)

    Select 1 as empid, 0 in the wages of all the double union

    Select option 2, the double 0);

    Data update are as follows

    with saldata as

    (

    Select 1 as empid, 5000 as wages, 500 as double pf

    Union of all the

    Select option 2, 10000,1000 like double pf

    )

    Select empid, salary saldata

    I tried the following query but does not work

    updated set of empsalary table (empid, salary) =

    (

    Select * from)

    with saldata as

    (

    Select 1 as empid, salary, 500 5000 as pf Union double all the

    Select option 2, 10000,1000 like double pf

    )

    Select empid, salary saldata

    ) sl

    where sl.empid = empsalary.empid

    )

    I use oracle 10g.

    Help, please.

    Krishna Devi wrote:

    Hello

    I want to update a table using the selected values.

    Cases in the sample:

    create table as empsalary)

    Select 1 as empid, 0 in the wages of all the double union

    Select option 2, the double 0);

    Data update are as follows

    with saldata as

    (

    Select 1 as empid, 5000 as wages, 500 as double pf

    Union of all the

    Select option 2, 10000,1000 like double pf

    )

    Select empid, salary saldata

    I tried the following query but does not work

    updated set of empsalary table (empid, salary) =

    (

    Select * from)

    with saldata as

    (

    Select 1 as empid, salary, 500 5000 as pf Union double all the

    Select option 2, 10000,1000 like double pf

    )

    Select empid, salary saldata

    ) sl

    where sl.empid = empsalary.empid

    )

    I use oracle 10g.

    Help, please.

    Thanks for posting creates table and test data.

    The error message would have helped because it's pretty obvious that this is the problem:

    Update table empsalary

    *

    ERROR on line 1:

    ORA-00903: invalid table name

    Just remove the word "table".

  • Creating external Tables using the EXECUTE IMMEDIATE in PL/SQL

    Hi guys,.

    I am trying to create an external Table using the EXECUTE IMMEDIATE in a procedure and I managed to compile and no errors were generated. But when I try to run it from sql using the exec command I get the following error:

    ------------------------------------------------------------------------
    ERROR on line 5:
    ORA-00911: invalid character
    ORA-06512: at "GEO. TEST_DDL', line 4
    ORA-06512: at line 5

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

    I tried to check the whole statement to create the external table, but I can't find where is the error. Surprisingly, if I simply run the command table create external on sqlplus it works, but not a procedure.

    If anyone can help with ideas or experience?

    Geoffrey Kossami

    The error means that there is an identifier somewhere that starts with a nonalphanumeric. This is a typical mistake of editing. A procedure compiles correctly is not of course because the underlying dynamic sql running is OK. Which of course only be resolved when you try to run it.

    There is certainly a problem with the text you provide to be run as a piece of dynamic sql code. You should try to watch it with dbms_output and run this code in sqlplus. But your problem is with the code you run as dynamic PL/SQL, it is not itself compilable.

    Jack

  • How to add new resource to existing routes using the API / Interface Tables?

    Hi friends,

    I need to add new resources to our existing ranges. The number of records is more than 10,000. So I need to create an anonymous block for her. But I don't know what are the tables Interface / API to use for their insertion. If anyone can guide me how can this be achieved, I would really appreciate it. If you can provide me with an example of code for it, it would be the best.

    Thanks in advance.

    KM

    Hi KM.

    PL insert the line in the BOM_OP_RESOURCES_INTERFACE table with

    INSERT INTO BOM_OP_RESOURCES_INTERFACE
    (process_flag, transaction_type, organization_id, routing_sequence_id, operation_seq_num, resource_seq_num,
    resource_code, assigned_units, usage_rate_or_amount, basis_type, schedule_flag, creation_date, effectivity_date)
    VALUES
    (1, 'CREATE', organization_id, v_rout_seq_id, v_operation_seq_num, v_resource_seq_num, v_resource_code,
    v_assigned_units, v_usage_rate_or_amount, DECODE (v_basis_type, 'BATCH', 2, 'ITEM', 1),
    Decode(i.schedule_yes_no, 'YES', 1, 'NO', 2), sysdate, v_eff_dt);

    Where, v_eff_dt = SELECT operation_sequence_id, effectivity_date IN v_oper_seq_id, v_eff_dt
    OF bom_operation_sequences b
    WHERE b.routing_sequence_id = v_rout_seq_id
    AND b.operation_seq_num = v_operation_seq_num;

    Then run simultaneous 'Bill and routing Interface' to import resources into the existing ranges.

    HTH
    Sanjay

  • How to create the Table using the column Drag and Drop feature

    Hello:
    I'm new to Data Modeler tool Oracle SQL dev and would like to know if there is a way to create a new table by reusing existing columns or groups of columns. The idea is to maintain consistency and save time of table design. If the columns created previously can be reused and require, drag and drop column in the right pane, then only new columns must be created manually.

    Any thoughts on this will be appreciated.

    Thank you!

    Yes - just change the name of the model table in the script (t_name = "table_template") then save this new transformation for later use.

    I don't know how to apply only some of the tables. Seems like something you could do to a secondary view level?

    Perhaps someone else on the forum can advise how to change the script to work on a subview only instead of the whole model.

  • Alignment of columns of a table using the control variable

    Hi I'm new to Javascript, using only Applescript before.

    I use Indesign 5.5 on Mac and I learn Javascript by adapting old Applescripts I have used for years.

    So, with an existing table, one of the things I want to do is to put alignments in the columns by using a variable. Here's what I've tried so far:

    function setColumnWidthsAndAlignments()
    {
        var myWidths=[29, 23, 13, 13, 13, 13];
        var myAlignments=["leftAlign","leftAlign","centerAlign","centerAlign","rightAlign","rightAlign"];
        var numberOfColumns=myTable.columns.count();
        for (c=0;c<numberOfColumns;c++)
        {
            myTable.columns[c].width=myWidths[c];
            myTable.columns[c].cells.everyItem().texts.everyItem().justification=Justification.myAlignments[c];
        }
    }
    
    

    but I get an error

    -Object does not support the property or method 'myAlignments '.

    If I throw the myAlignments variable and just put for example leftAlign, it works, then maybe I'm not declares the variable correctly?

    I know that I could add a few extra paragraph styles and cell styles and style of the table like that, but I it would be a good learning exercise (more of which I want to limit the number of paragraph in document styles - there enough already!)

    If anyone is really interested, I would like to place the script here and would like to really comment on how the structure could be improved or optimized or simply to tell me if I'm heading in the right direction.

    Thank you and best regards,

    Malcolm

    //Simple table script 1
    
    
    app.scriptPreferences.userInteractionLevel = UserInteractionLevels.interactWithAll; //make sure that user interactivity is switched on ????  why????
    
    
    if(checkForOpenDocs()) //checks to see if there are any open Indesign documents
        {
            if(targetMyTable()) //checks to see if the selection is inside a table - if not, gives an error dialog - if it is, returns variable myTable which can be used to target different parts of the table
                {
                   // selectLastRow();
                    //resetTable();
                    //applyTableTextParaStyle();
                    //removeRules();
                    //applyAlternatingFills();
                    setColumnWidthsAndAlignments();
                    //setRowHeightsAndInsets();
                    
                    
        }
    }
    
    
    function checkForOpenDocs()
    {
        if (app.documents.length!=0)   //there is at least one document open
        {
            myDocument = app.documents.item(0);    //get the id of the frontmost document - might be useful?
            return true;
        }   
        else
        {
            alert("There are no documents open");
            return false;
         }
     }
    
    
    function targetMyTable() //no matter what is selected in the table, change selection to be whole table
    {
        if(app.selection[0]==null) //if there is nothing selected
        {
            alert("There is nothing selected.");
            return false
        }
        var mySelection = app.selection[0];
        
        switch(mySelection.constructor.name)
        {
                                            //When a row, a column, or a range of cells is 
                                            //selected, the type returned is always "Cell"
            case "Cell":
            myTable=mySelection.parent;
            return true
            break;
    
            case "Table":
            myTable=mySelection;
            return true
            break;
    
    
            case "InsertionPoint":
            case "Character":
            case "Word":
            case "TextStyleRange":
            case "Line":
            case "Paragraph":
            case "TextColumn":
            case "Text":
            if(app.selection[0].parent.constructor.name == "Cell")
            {
                myTable=mySelection.parent.parent;
                return true
            }
            else
            {
                alert("The selection is not inside a table."); 
                return false
            }
            break;
    
    
            case "Rectangle":
            case "Oval":
            case "Polygon":
            case "GraphicLine":
            case "TextFrame":
            if(app.selection[0].parent.parent.constructor.name == "Cell")
            {
                myTable=mySelection.parent.parent.parent;
                return true
            }
            else
            {
                alert("The selection is not inside a table."); 
                return false
            }
            break;
    
    
            case "Image":
            case "PDF":
            case "EPS":
            if(app.selection[0].parent.parent.parent.constructor.name == "Cell")
            {
                myTable=mySelection.parent.parent.parent.parent;
                return true
            }
            else
            {
                alert("The selection is not inside a table."); 
                return false
            }
            break;
            
            default:
            break;
        }
    }
    
    
    
    function resetTable()
    {
        myTable.cells.everyItem().clearCellStyleOverrides (true);   
    }
    
    
    function selectLastRow()
        {
        //myTable.cells.itemByRange(0,-1).select();
        myTable.rows.itemByRange(-1,-1).select();
        }
    
    
    function applyTableTextParaStyle()
    {
        myParagraphStyle=myDocument.paragraphStyles.item("•table text");
        myTable.cells.everyItem().texts.everyItem().appliedParagraphStyle = myParagraphStyle;
    }
    
    
    function removeRules()
    {
        myTable.cells.everyItem().topEdgeStrokeWeight=0;
        myTable.cells.everyItem().bottomEdgeStrokeWeight=0;
        myTable.cells.everyItem().leftEdgeStrokeWeight=0;
        myTable.cells.everyItem().rightEdgeStrokeWeight=0;
    }
    
    
    function applyAlternatingFills()
    {
        myColor=myDocument.swatches.item("Black");
        myTable.alternatingFills=AlternatingFillsTypes.alternatingRows;
        myTable.startRowFillColor=myColor;
        myTable.startRowFillTint=20;
        myTable.endRowFillColor=myColor;
        myTable.endRowFillTint = 0;
    }
    
    
    function setColumnWidthsAndAlignments()
    {
        var myWidths=[29, 23, 13, 13, 13, 13];
        var myAlignments=["leftAlign","leftAlign","centerAlign","centerAlign","rightAlign","rightAlign"];
        var numberOfColumns=myTable.columns.count();
        for (c=0;c<numberOfColumns;c++)
        {
            myTable.columns[c].width=myWidths[c];
            myTable.columns[c].cells.everyItem().texts.everyItem().justification=Justification.myAlignments[c];
        }
    }
    
    
    function setRowHeightsAndInsets()
    {
        myTable.rows.everyItem().minimumHeight=1.058;
        myInset=0.5;
        myTable.rows.everyItem().topInset=myInset;
        myTable.rows.everyItem().bottomInset=myInset;
    }
    
    

    Hello

    Welcome

    myAlignments should be properties, not strings. have not read the second part of your post...

    myTable = app.activeDocument.stories[0].tables[0];
    setColumnWidthsAndAlignments(myTable)
    
    function setColumnWidthsAndAlignments(tableObj)
    {
        var myWidths=[29, 23, 13, 13, 13, 13];
        var myAlignments=[Justification.LEFT_ALIGN,Justification.LEFT_ALIGN,Justification.CENTER_ALIGN,Justification.CENTER_ALIGN,Justification.RIGHT_ALIGN,Justification.RIGHT_ALIGN];
        var numberOfColumns=tableObj.columns.count();
        for (c=0;c		   
  • How to get the numbers to remember a list of answers column on nine or more tables using the same format

    I'm new to numbers but were mainly use it to organize only a simple way to display the cases that arise in a criminal background check. So for a table, I can type driving while license revoked (DWLR) as the load and from there on the charge will fill itself or offer similar responses after typing a single key.  A well appreciated time saver but problems I can sort and summarize the criminal history for 10 people or more at a time and need to do it urgently often.   However when I opened a new table I have to cross and type a new the precise wording of a charge, its disposal (Guilty, voluntary dismissal etc.)  and just know that there is an easy way for the numbers to know in a new table that, if finished it is a list annoyingly long term broken criminal code list and do not have to do that in each new table so that it can take.  I know I'm missing something very basic, but any help would save hours for me and the other poor interns who spend twice as long just to undestand the case and troubleshoot.  Thanks for all the ideas!

    David

    Hi D,

    The AutoComplete feature provides suggestions picked on data entered in the cells above the one you are working in. You can automate the process by preparing a "full menu" table containing ALL the possible inputs for each column in the rows below the header lines.

    The checkbox in cell A1 is a switch, is used to insert the word HIDE in the cell that contains the list of AutoComplete terms. Cells in this area are filled with bright red to draw attention to them when indicated.

    A rule to reorganize (shown and applied below) hiding these lines when the box is checked.

    Hide the lines does not affect the operation of auto-complete, as shown in the table below:

    When the form is competed, action depends on how the result will be recorded and filed.

    If there is no need to edit/modify the file, it can be converted to a PDF using the print dialog. This produces a copy of the displayed part of the document only.

    If the document will require more editing, you can remove the lines containing AutoComplete suggestions. Clear the check box, select all the red lines filled, click the triangle in the row reference tabs and choose Remove.

    Formula in A2 - A10: = IF(A$1,"HIDE","")

    Kind regards

    Barry

  • How can I resize the window of my table using the node of furniture? Thank you

    Hello

    I want to first the size of the window of my table using its property node but I can't put it to "write".

    If anyone knows if this is possible?

    Thank you

    User

    Hello

    Some properties are 'read only' and there is not that you can do about it.

    However, to set the size of your chart, you can use the "conspiracy area.size" (I don't know how it was translated into french) can be found here:

    Hope this helps

  • Excerpt from my table using the loop For

    Hello

    I have this loop to create a 2D array. The result is on the table below. I want that this 2D table should be fully completed and compiled, then it will be sent out of the loop.

    I don't want to extract the value of table 2D is a loop. This is the problem that I am facing.

    My ultimate goal is to extract the individual number of the final table of the 2D table line and be an entry for other functions.

    Please help me. Thank you

    PX

    Hi PX.

    Here's a solution without using screw express

  • "missing the SELECT keyword" error during an insert into the temporary table using the blob value

    I'm trying to insert into an oracle temp table using select that retrieves data from a blob field but I get the error: "lack the SELECT keyword.

    How we store temporary in oracle result when we make this type of operation (extraction of data in fields and try to load them into a separate table on the fly.?)

    with cte as)

    Select user_id, utl_raw.cast_to_varchar2 (dbms_lob.substr (PREFERENCES)) as USER my_blob

    )

    create table new_table as

    SELECT user_id,EXTRACTvalue(xmltype(e.my_blob),'/preferences/locale') regional settings

    E ETC

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

    BLOB data - value - which is

    <? XML version = "1.0" encoding = "ISO-8859-1" ?>

    - < Preferences >

    < time zone > America/New_York < / > zone

    < displayscheduleinusertimezone > Y < / displayscheduleinusertimezone >

    < local > Spanish < /locale >

    < DateFormat > JJ/mm/aaaa < / DateFormat >

    < timeFormat > hh: mm aaa < / timeFormat >

    < longformat > Long_01 < / longformat >

    < doubleformat > Double_01 < / doubleformat >

    < percentformat > Percentage_01 < / percentformat >

    < currencyformat > Currency_01 < / currencyformat >

    < / Preferences >

    A WITH clause that must immediately precede the SELECT keyword:

    SQL > create table t:

    2 with the o as (select double dummy)

    3 select * West longitude;

    Table created.

  • Loading SQL tables using the rules file

    Hi Experts,

    I have a doubt. In our project, we have a maxl command that imports the essbase data cube using tables sql below.

    import data from database VodaPln.wrkforce

    log in as 'devhyp' identified by 'password' using the rules_file «WFDataLoad.rul» Server

    My doubt is here in this maxl, we define the schema and password name ('devhyp' identified by 'password'( ), but we do not give the name of the table. So, how will the maxl understand what table to extract the data. Please let me know in case I'm missing something and need to check out somewhere else.

    Thanks and greetings

    The actual SQL statement is in the State of charge, IT will set the columns, tables where the conditions and joins. The first parameter is the name of user who may or may not be the schema name. This information is containd in the State of charge, but also an ODBC or CLI connection

  • pass the binding variable to the af:table using the menu drop-down

    I need to create an af:table to pull all employees belonging to a Department. I created the table based on a viewobject.

    The query in the view object has a variabe bind, for example:

    Select * from employee where deptname to (select deptname of Department where deptid =: deptid)

    My question is how to get the deptid selected in a drop-down list value passed to the query of the table of the adf?

    The user, what version jdev you use?

    Where is the location THAT LOV located on the page? Once you have the service ID, you can use the executeWithParams to run the query and display the result in the table.

    If this isn't what you want to elaborate on the use case.

    Timo

  • I can't use the Exchange Control Panel.

    I installed the Adobe Exchange Extension and that it appears in all programs, but I can't use it. Everything is grey so I can't search or lick on anything whatsoever. I left the program twice and restarted, still nothing.

    Hello Tracey,

    The Adobe Exchange Panel is no longer supported and has been replaced by Adobe add-ons Web site. All modules must be obtained via this Web site now rather than the Exchange Panel.

    Kind regards

    Krystal - team of modules

Maybe you are looking for

  • Equium A200-1V0 - just freezes very often

    I have a problem with my Toshiba Equium A200-1V0. It freezes just very often to watch movies, browse the net or just listening to music and it makes a strange noise like when winamp freezes, but the music is still playing.I have windows 7. What can I

  • Cannot use my GPIB device with labview

    Hi all I installed my GPIB card, but now I am facing another issue. When I try to import device recognized by Visia (photo 1) it does not appear. My device is a function tektroniks generator. I just need 2 functions: change of frequency, type of wave

  • Pavilion 15 p204tx: SSD upgrade query

    Hello I was thinking about upgrading to an SSD in order to improve the overall performance of my laptop. Before I go ahead and buy no matter what material, I want to assure you that it works correctly on my device.My cell phone is compatible with SAT

  • Windows security update

    security update for windows vista kb967723 stubbornly refuses to install. I was advised that this update is available. However, I installed it many, many times and it seems to have stubbornly refused to install.

  • Media Player won't play my dlna Server files

    Howdy. I'm listening to music stored on my phone to my laptop android using Windows media player. I have Windows Vista and Media player 11. I use a Motorola Droid Bionic.  My phone is able to locate the files on the PC, but never, Media player recogn