REVOKE insert on tables from use with DBA role

Hi
I have two users with DBA role granted. I want to remove insert/update capabilities of a certain tables from one of the users but keep the DBA role. Is this possible ?
Thanks

No.
Do not even think about messing with the DBA role!!
You cannot grant global privileges through a role, then ungrant select privileges from an individual.
What you need to do is to crate your own local DBA-like role (or roles). Grant the global privileges all DBAs need to your own DBA-like role and grant that to the DBAs. Then grant privileges on the tables to various roles and grant them to the individual DBAs. That way you can exclude the privileges you do not want to grant.
But, ultimately, you need to be able to trust your DBA to follow procedures, rules, and instructions. If you cannot, perhaps he should not be a DBA.

Similar Messages

  • Best way to insert a table into image with high resolution for web?

    I've tried inserting a table from Excel into Photoshop and making a jpeg and gif out of it, but when I upload it to the web the resolution is terrible.
    Any ideas on how I can make get a table into an image? It's a bit too complex to create with HTML.

    Well, you are leaving out a lot of info.
    a: how are you saving it in Photoshop? What file type/compression amount, etc.
    b: how are you uplaoding it - where are you uploading it - are you uploading JUST the image, or are you uploading the image within an .html document?
    One thought, if you are JUST uploading it as an image, then trying to view it in a browser, if the image is larger than the viewport of the browser, some browsers will automatically rezie the image to fit visually into the viewport. More than likely, this resizing could be causing image distortion. Imagine it like when you zoom in/out in Photoshop - (unless you are using the accelerated graphic gui option in PS preferences), any zoom level outside of 25%, 50%, or 100% will cause visual distortion.
    Give a link to where you have uploaded the image (or whatever you are talking about). Like I said, there are other things to consider as to why this is happening.

  • Using Pages, I have created a document and inserted a Table for use in logging an inventaory. When I came to print this off however the lines for the table were missing but the text was in the Table format, weird! How do I print the Table?

    Using Pages, I have created a document and inserted a Table for use logging an inventory. When I came to print this document the lines and boarders of the Table feature did not print however the text did print in the table format. How do I get the lines and boarders to print also?

    Using Pages, I have created a document and inserted a Table for use logging an inventory. When I came to print this document the lines and boarders of the Table feature did not print however the text did print in the table format. How do I get the lines and boarders to print also?

  • Performance tab not working in Enterprise Manager for user with dba role

    Database: 11g2
    New to Oracle. Don't want share SYS user account among dbas. Tried to create user with dba role to perform all tasks.
    1. Removed DBMS_JOB, DBMS_LOB, UTL_FILE, UTL_HTTP, UTL_SMTP, and UTL_TCP from PUBLIC
    2. Created user dbauser1 with dba role
    3. Log in as dbauser1 in Enterprise Manager
    After click Performance tab, it just went straight to "Database Login" page. No error message.
    Any suggestions or advice will be appreciated.
    piaoma

    Hi Gourav,
    This is the wsdl url:
    http://hostname:8000/sap/bc/srt/wsdl/bndg_E04711310A0E55F1A0E3005056B03D6F/wsdl11/allinone/ws_policy/document?sap-client=450
    Kind Regards,
    Richard

  • How to insert into table from a xml with XDE for java?

    want to insert into the oracle tables from the xml with XDE for java, some sample better. thank you.

    XML Document may be stored in a SQL database with XML SQL Utility.
    http://download-west.oracle.com/docs/cd/B13789_01/appdev.101/b10794/adx08xsu.htm#i1008168
    XML Document may be stored in a SQL database with Oracle XML DB.
    http://download-west.oracle.com/docs/cd/B13789_01/appdev.101/b10790/xdb03usg.htm#CEGFECFH

  • SSIS - Script Task creates a DTS var and using Foreach loop, Execute SQL needs to INSERT into table from this DTS var.

    I have a script task written in C# that creates an array of strings "arrayFields" after parsing a text file. It saves the array of strings in a DTS variable.
    Each row in array represents a row is comma separated and is a row that must be inserted into a table. For example,
    X and Z are fields in the table
    X1, X2,....Xn
    Z1,Z2,...Zn
    I am using a Foreach Loop  to grab each row and then  Execute SQL Task to take each row from the array and insert each field per row in a table,
    The SQL is something like,
    INSERT dbo.table values(field1, field2,...fieldn) arrayFields?
    What should this this INSERT look like?

    I guess you implemented
    Shredding a Recordset
    Based on what I understood (correct me if I am wrong) you have difficulties mapping the input parameters, if so here is the guide
    http://www.sqlis.com/sqlis/post/The-Execute-SQL-Task.aspx
    In short it might look like
    INSERT dbo.table  (ColumnA, ColumnB,...) VALUES (?,?...)
    The syntax for the T-SQL INSERT is http://technet.microsoft.com/en-us/library/dd776381%28v=sql.105%29.aspx
    Arthur
    MyBlog
    Twitter

  • Inserting standard table data using ztable

    Hi all,
               I have an issue like i have created "ztable" where i am taking few of the mara table fields.
    but my problem is i m not getting data into these fields , so can anyone tell me wht shuld be done to get the data into my ztable which will contain all these fields.
    <code>
    tables : mara.
    data : begin of itab occurs 0,
           matnr like mara-matnr,
           ersda like mara-ersda,
           ernam like mara-ernam,
           vpsta like mara-vpsta,
           mtart like mara-mtart,
           mbrsh like mara-mbrsh,
           matkl like mara-matkl,
           meins like mara-meins,
           end of itab.
    data : wa like line of itab.
    select matnr ersda ernam vpsta mtart mbrsh matkl meins from mara into corresponding fields of table itab .
    what should be done , shuld i use INSERT INTO "ZTABLE FROM ITAB.
    PLZZ SUGGEST.
    Thanks,
    karan

    navneet its working now but ztable_12 where i am inserting data its not getting any data why?
    below is my code.
    <code>
    tables : mara.
    data : begin of itab occurs 0,
           matnr like mara-matnr,
           ersda like mara-ersda,
           ernam like mara-ernam,
           vpsta like mara-vpsta,
           mtart like mara-mtart,
           mbrsh like mara-mbrsh,
           matkl like mara-matkl,
           meins like mara-meins,
           end of itab.
    data : wa like line of itab.
    select matnr ersda ernam vpsta mtart mbrsh matkl meins from mara into corresponding fields of table itab .
    append itab.
    INSERT ztable_12 from table itab.
    </code>
    thnks karan

  • Update table from SM30 with automatic Time Stamp

    Hi,
    I have created a table maintenance generator for updating table from SM30.
    Now there are fields in my table which are CRETING TIME and CHANGING TIME. Both being TIMESTAMP field (datatype: RSDDTZNTSTMPS).
    Is it possible while user updates records/create new record in the table from SM30, these time stamp field to automatically get populated.
    Also is there any F4 help available for TIMESTAMP field?
    ags.

    Hi,
    You need to do two things inorder to get the desired results.
    1) Go to Screen Layout of the Screen created by table maintenance generator and make the date/time columns to DISPLAY ONLY. This will ensure that user is not able to modify the values at runtime
    2) Write the code in PAI of the Module pool program to populate the values at runtime using Sy-datum/sy-uzeit. (Hint : Search for INSERT/MODIFY statements which will show the location before which you need to write your logic)
    Regards,
    Kshitija

  • Setting up a remote with ir-tables for use with XBMC

    My main goal is to use a remote with xbmc, but I'm having issues.
    Issue #1 (main problem): The directional keys and enter will work but no other keys seem to register.
    Issue #2: Even the keys that work have this weird usage issue, where pressing any of the same key twice loses the second key press. For example clicking up arrow 4 times results in only two actual "up's" being done. (first up works, second fails, third works, forth fails, etc)
    I've spent about four hours getting to this point and there is a lot of conflicting information out there on this subject which has had me very confused, but at this point I assume I can ignore any mention of Lirc as it seems like its not needed and if ir-keytable is used correctly things should just work?
    Quote from www.lirc.org: "Recent linux kernels make it possible to use some IR remote controls as regular input devices"
    What I have got/done:
    Machine: Zotac Zbox Nano AD10 with remote.
    Linux: Manjaro Openbox Addition
    Testing in applications: XBMC, Leafpad, Terminal
    [david@zotac ~]$ dmesg | grep CIR
    [    4.444693] ite_cir: Auto-detected model: ITE8704 CIR transceiver
    [    4.444701] ite_cir: Using model: ITE8704 CIR transceiver
    [    4.478490] input: ITE8704 CIR transceiver as /devices/virtual/rc/rc0/input8
    [    4.478531] rc0: ITE8704 CIR transceiver as /devices/virtual/rc/rc0
    [david@zotac ~]$ ir-keytable
    Found /sys/class/rc/rc0/ (/dev/input/event6) with:
            Driver ite-cir, table rc-rc6-mce
            Supported protocols: NEC RC-5 RC-6 JVC SONY SANYO LIRC other
            Enabled protocols: NEC RC-5 RC-6 JVC SONY SANYO LIRC other
            Name: ITE8704 CIR transceiver
            bus: 25, vendor/product: 1283:0000, version: 0x0000
            Repeat delay = 500 ms, repeat period = 500 ms
    #My keymaps file contains (I just put the keys that I would like to use with xmbc)
    0x8034045b KEY_RIGHT
    0x8034045a KEY_LEFT
    0x8034045c KEY_ENTER
    0x80348459 KEY_DOWN
    0x80340458 KEY_UP
    0x80348421 KEY_R
    0x80340420 KEY_F
    0x80348410 KEY_EQUAL
    0x80348483 KEY_ESC
    0x80348431 KEY_X
    0x8034842f KEY_T
    0x803404cb KEY_I
    0x8034845d KEY_M
    0x8034042c KEY_P
    0x80340411 KEY_MINUS
    I write my keymaps file: (I think /etc/keymaps/[file] would be a better location for this file but it shouldn't matter is that correct?)
    ir-keytable -c -w /home/david/Documents/keymaps --device=/dev/input/event6 --period=500 --delay=500
    I can verify the settings are registered:
    [david@zotac ~]$ ir-keytable --read --device=/dev/input/event6
    scancode 0x80340411 = KEY_MINUS (0x0c)
    scancode 0x80340420 = KEY_F (0x21)
    scancode 0x8034042c = KEY_P (0x19)
    scancode 0x80340458 = KEY_UP (0x67)
    scancode 0x8034045a = KEY_LEFT (0x69)
    scancode 0x8034045b = KEY_RIGHT (0x6a)
    scancode 0x8034045c = KEY_ENTER (0x1c)
    scancode 0x803404cb = KEY_I (0x17)
    scancode 0x80348410 = KEY_EQUAL (0x0d)
    scancode 0x80348421 = KEY_R (0x13)
    scancode 0x8034842f = KEY_T (0x14)
    scancode 0x80348431 = KEY_X (0x2d)
    scancode 0x80348459 = KEY_DOWN (0x6c)
    scancode 0x8034845d = KEY_M (0x32)
    scancode 0x80348483 = KEY_ESC (0x01)
    At this point is seems like everything is setup correctly but like I said only the direction keys and return work. If it did work my next step would be determining when to issue the ir-keytable write, and I'm assuming I can just do that in openbox's autostart file?
    Does anyone have any ideas as to what I might do to correct these issues?

    I also encountered davevallance's issue #1.  Directional and enter keys already work, as do volume keys.  If any other button is mapped to those working keys (using ir-keytable) then they also work, for example I can successfully map the useless "teletext" to "enter" and it produces a linefeed when pressed but I cannot get it to do the same with "space".  Interestingly it does produce a space keypress in a virtual terminal (Ctrl+Alt+F3), also "ir-keytable -t" shows the correct key event which proves the underlying OS is recognising the mapping.  The issue is somewhere in the X system instead.
    I refer now to HID Remotes which covers the situation well.  It explains that X does not process keycodes above 255 and at first that would seem to fit here.  All the keys which work (arrows, enter, volume) have keycodes less than 255.  So why don't other 'safe' keycodes work too?
    Xorg has it's own keycode map with "xmodmap" but I don't think that is responsible in this case.  From the Arch wiki it suggests exploring with:
    xev | grep -A2 --line-buffered '^KeyRelease' | sed -n '/keycode /s/^.*keycode \([0-9]*\).* (.*, \(.*\)).*$/\1 \2/p'
    Unmapped keys should produce a "NoSymbol" message but for my non-working keys there is no response at all in X.  Is there another layer between kernal and GUI?

  • CREATE TABLE AS using WITH

    I am converting a PostreSQL query to T-SQL but am running into a syntax error that I cannot understand.
    My main query below works fine.
    WITH itowner AS (
            SELECT itowner_1.comp1id AS businessserviceid,
                person.name AS itowner_name,
                person.username AS itowner_username,
                person.component_id AS itowner_id
               FROM dbo.rel_BusinessServiceHasITOwnerPerson itowner_1
          JOIN comp_Person person ON person.component_id = itowner_1.comp2id
    busowner AS (
             SELECT bown.comp1id AS businessserviceid,
                person.name AS busown_name,
                person.username AS busown_username,
                person.component_id AS busown_id
               FROM dbo.rel_BusinessServiceHasBusinessOwnerPerson bown
          JOIN comp_Person person ON person.component_id = bown.comp2id
    cat AS (
            SELECT biz.component_id businessserviceid, biz.bsname AS Business_Service, 
    c.name AS Category
    FROM dbo.comp_BusinessService biz
    left outer join rel_BusinessServiceHasCategory a on biz.component_id = a.comp1id
    join comp_ApoCategory c on a.comp2id = c.component_id
    LEFT OUTER JOIN comp_ApoCategory c1 ON c.parent = c1.objectuuid
     SELECT 
        cat.Category,
        biz.component_id AS businessservice_id,
        biz.bsname as businessservice_name,
        biz.description,
        itowner.itowner_name,
        busowner.busown_name
       FROM comp_BusinessService biz
       LEFT JOIN itowner  ON itowner.businessserviceid  = biz.component_id
       LEFT JOIN busowner ON busowner.businessserviceid = biz.component_id
       LEFT JOIN cat      ON cat.businessserviceid      = biz.component_id;
    However, as soon as I wrap it in a CREATE TABLE AS I get an syntax error at the first WITH.
       Incorrect syntax near 'WITH'.  Expecting ID.
    Below is the full statement.
    CREATE TABLE "dm_amd_business_services" AS
    WITH itowner AS (
            SELECT itowner_1.comp1id AS businessserviceid,
                person.name AS itowner_name,
                person.username AS itowner_username,
                person.component_id AS itowner_id
               FROM dbo.rel_BusinessServiceHasITOwnerPerson itowner_1
          JOIN comp_Person person ON person.component_id = itowner_1.comp2id
    busowner AS (
             SELECT bown.comp1id AS businessserviceid,
                person.name AS busown_name,
                person.username AS busown_username,
                person.component_id AS busown_id
               FROM dbo.rel_BusinessServiceHasBusinessOwnerPerson bown
          JOIN comp_Person person ON person.component_id = bown.comp2id
    cat AS (
            SELECT biz.component_id businessserviceid, biz.bsname AS Business_Service, 
    c.name AS Category
    FROM dbo.comp_BusinessService biz
    left outer join rel_BusinessServiceHasCategory a on biz.component_id = a.comp1id
    join comp_ApoCategory c on a.comp2id = c.component_id
    LEFT OUTER JOIN comp_ApoCategory c1 ON c.parent = c1.objectuuid
     SELECT 
        cat.Category,
        biz.component_id AS businessservice_id,
        biz.bsname as businessservice_name,
        biz.description,
        itowner.itowner_name,
        busowner.busown_name
       FROM comp_BusinessService biz
       LEFT JOIN itowner  ON itowner.businessserviceid  = biz.component_id
       LEFT JOIN busowner ON busowner.businessserviceid = biz.component_id
       LEFT JOIN cat      ON cat.businessserviceid      = biz.component_id;
    Any advice on getting the correct syntax?
    Thanks, Bruce...

    ;WITH itowner AS (
    SELECT itowner_1.comp1id AS businessserviceid,
    person.name AS itowner_name,
    person.username AS itowner_username,
    person.component_id AS itowner_id
    FROM dbo.rel_BusinessServiceHasITOwnerPerson itowner_1
    JOIN comp_Person person ON person.component_id = itowner_1.comp2id
    busowner AS (
    SELECT bown.comp1id AS businessserviceid,
    person.name AS busown_name,
    person.username AS busown_username,
    person.component_id AS busown_id
    FROM dbo.rel_BusinessServiceHasBusinessOwnerPerson bown
    JOIN comp_Person person ON person.component_id = bown.comp2id
    cat AS (
    SELECT biz.component_id businessserviceid, biz.bsname AS Business_Service,
    c.name AS Category
    FROM dbo.comp_BusinessService biz
    left outer join rel_BusinessServiceHasCategory a on biz.component_id = a.comp1id
    join comp_ApoCategory c on a.comp2id = c.component_id
    LEFT OUTER JOIN comp_ApoCategory c1 ON c.parent = c1.objectuuid
    SELECT
    cat.Category,
    biz.component_id AS businessservice_id,
    biz.bsname as businessservice_name,
    biz.description,
    itowner.itowner_name,
    busowner.busown_name
    INTO dm_amd_business_services --New table
    FROM comp_BusinessService biz
    LEFT JOIN itowner ON itowner.businessserviceid = biz.component_id
    LEFT JOIN busowner ON busowner.businessserviceid = biz.component_id
    LEFT JOIN cat ON cat.businessserviceid = biz.component_id;

  • Can oracle temporary tables be used with distributed transactions?

    Hello,
    Does anybody know if temporary tables are supported with distributed transactions?
    We use a temporary table to store query results and see no problems when the JDBC driver (Type 2 or Type 4) is used with local transactions. The temporary tables are set for transaction-level data persistence (delete rows on commit).
    When we switch to JDBC/XA driver we occasionally get ORA-14450 error (java.sql.SQLException: ORA-14450: attempt to access a transactional temp table already in use).
    Many thanks...

    I have been able to use temporary tables on remote databases, so I don't think that it is forbidden. Of course, I'm not using JDBC so that might be a problem.
    The other thing that occurs to me is that you are doing something other than DML with the table e.g. trying to drop it. If that is the case you should re-read the documentation and remind yourself of the purpose of temporary tables.
    Cheers, APC

  • Procedure to insert in table from other table returning multiple records

    Hi Everybody,
    I am new to oracle. So need your advice guys. I have to insert values to one table from another table. Please let me know , how i can do this.
    E.g:
    INSERT INTO TABLEA(`Name`,`ID`,`another_field`) VALUES ('Somevalue',(SELECT DISTINCT id FROM TABLEB WHERE tb.cat = '5' AND ID NOT IN (select id from TABLEC)), 'somevalue')
    Above thing is not working for me.
    I have to insert ID IN TABLE A by getting value from this query:
    SELECT DISTINCT id FROM TABLEB WHERE tb.cat = '5' AND ID NOT IN (select id from TABLEC)
    This query is returning multiple IDs, so how can i insert all in TABLEA by creating some sp.
    Please help me out of this. I will be very thankful to you all guys. I will really appreciate your suggestions and comments.
    Regards
    Dev

    Why cant you just do this,
    INSERT INTO TABLEA (NAME, ID, another_field)
       SELECT DISTINCT 'Somevalue',
                       ID,
                       'somevalue'
         FROM TABLEB
        WHERE tb.cat = '5'
          AND ID NOT IN (SELECT ID FROM TABLEC)G.

  • Oracle Error from inserting a table from a table

    Hi all,
    We got a oracle error, as following,
    Thu Mar 2 16:34:03 2006
    Errors in file /oracle1/app/oracle/admin/M3US/udump/ora_1773234_m3us.trc:
    ORA-00600: internal error code, arguments: [4518], [], [], [], [], [], [], []
    The SQL is below,
    INSERT INTO MKT.TM_SAL_PGM_LOG
    SELECT B.SEQ + ROWNUM LOG_SEQ ,
    A.COM_CODE ,
    A.DIV_CODE ,
    A.PGM_NO ,
    A.PGM_SEQ ,
    A.PGM_TYPE ,
    A.CUST_CD ,
    A.BILL_TO ,
    A.TXN_TYPE ,
    A.TXN_NO ,
    A.TXN_SEQ ,
    A.TXN_DATE ,
    A.MODEL ,
    A.SUFFIX ,
    A.APPLY_AMT_LOC ,
    A.APPLY_AMT_TXN ,
    A.CN_ENTRY_FLAG ,
    A.CURRENCY ,
    A.APPLY_TYPE ,
    A.PCT_RATE ,
    A.AMT_PER_UNIT ,
    A.NET_AMT_LOC ,
    A.NET_AMT_TXN ,
    A.ACCRUAL_TYPE ,
    A.SALESMAN ,
    A.CREATE_DATE ,
    A.DEPT_CODE ,
    A.QTY ,
    A.ACCRUAL_FLAG ,
    A.APPLY_AMT ,
    A.FIXED_AMT ,
    A.SHIP_FROM ,
    A.AUTO_ADJUST ,
    A.CHINA_PRODUCT
    FROM MKT.TM_SAL_PGM_LOG_IT A,
    ( SELECT MAX(LOG_SEQ) SEQ FROM MKT.TM_SAL_PGM_LOG ) B
    WHERE PGM_NO = '2006-DA0004B'
    AND TXN_TYPE IN ( 'ACCR' ,'CRED' )
    AND COM_CODE = 'LGEUS';
    If we tried to insert into a table with one more condition,
    and rownum=1;
    it went throught without error.
    And, if we insert into the table with value( val1, val2,.....,valn), it also went through without any error message, but ONLY when the whole SQL is executed.
    There is no error either for the select statement in the SQL either.
    It is Oracle 8.1.7.4 64-bit on IBM AIX 5.2 machine.
    What is wrong?
    Thanks for advance!
    Robert

    Dump file /oracle1/app/oracle/admin/M3US/udump/ora_1773234_m3us.trc
    Oracle8i Enterprise Edition Release 8.1.7.4.0 - Production
    With the Partitioning option
    JServer Release 8.1.7.4.0 - Production
    ORACLE_HOME = /oracle1/app/oracle/product/8.1.7
    System name: AIX
    Node name: lgeus
    Release: 2
    Version: 5
    Machine: 00C9C4CD4C00
    Instance name: M3US
    Redo thread mounted by this instance: 1
    Oracle process number: 86
    Unix process pid: 1773234, image: oracle@lgeus (TNS V1-V3)
    *** SESSION ID:(184.8386) 2006-03-02 16:13:16.189
    *** 2006-03-02 16:13:16.189
    ksedmp: internal or fatal error
    ORA-00600: internal error code, arguments: [4518], [], [], [], [], [], [], []
    Current SQL statement for this session:
    INSERT INTO TM_SAL_PGM_LOG
    SELECT C.LOG_SEQ + ROWNUM,
    D.COM_CODE, D.DIV_CODE, '2006-DA0004B' PGM_NO,
    DECODE ( T.PRODUCT, 'WR', 1, 'WL', 2, 'WK', 3, 'JE', 4, 'JM', 5, 'FR', 6, 'FD',7, 0 ) PGM_SEQ , 'KO' ,
    M.CUST_CD, M.BILL_TO, 'ACCR' TXN_TYPE, D.ORDER_NO, D.SALES_SEQ,
    GREATEST ( M.INVO_DATE, '20060228') , D.MODEL, D.SUFFIX,
    D.NET_AMT_TXN * 0.02,D.NET_AMT_TXN * 0.02, 'S', 'USD', 'P', 2, 0, D.NET_AMT_LOC, D.NET_AMT_TXN, 'L',
    M.SALESMAN, SYSDATE, M.DEPT_CODE, D.PICK_QTY, NULL, NULL, NULL, NULL, 'N', NULL
    FROM TM_SAL_DTL D,
    TM_SAL_MST M,
    TM_MODEL T,
    ( SELECT NVL(MAX (LOG_SEQ ),0) LOG_SEQ FROM TM_SAL_PGM_LOG_IT ) C
    WHERE D.ORDER_NO = M.ORDER_NO
    AND D.COM_CODE = M.COM_CODE
    AND D.DIV_CODE = M.DIV_CODE
    AND D.MODEL = T.MODEL
    AND D.SUFFIX = T.SUFFIX
    AND D.COM_CODE = T.COM_CODE
    AND ( D.INVO_NO , D.INVO_SEQ ) IN (
    SELECT /*+ ORDERED M, D, T */
    D.INVO_NO, D.INVO_SEQ
    FROM TM_SAL_MST M,
    TM_SAL_DTL D,
    TM_MODEL T
    WHERE M.ORDER_NO = D.ORDER_NO
    AND M.COM_CODE = D.COM_CODE
    AND M.DIV_CODE = D.DIV_CODE
    AND D.MODEL = T.MODEL
    AND D.SUFFIX = T.SUFFIX
    AND D.COM_CODE = T.COM_CODE
    AND M.INVO_DATE BETWEEN '20060101' AND '20061231'
    AND M.BILL_TO IN ( 'US006900' )
    AND T.PRODUCT IN (
    SELECT PRODUCT FROM TM_SAL_PGM_DTL
    WHERE PGM_NO = '2006-DA0004B' )
    MINUS
    SELECT TXN_NO, TXN_SEQ
    FROM TM_SAL_PGM_LOG
    WHERE PGM_NO = '2006-DA0004B'
    AND COM_CODE = 'LGEUS'
    AND TXN_TYPE = 'ACCR' )
    ----- Call Stack Trace -----
    calling call entry argument values in hex
    location type point (? means dubious value)
    ksedmp+00cc bl ksedst 1 ?
    ksfdmp+0018 bl ksedmp 110276CD ?
    kgeriv+0104 bl _ptrgl
    kgeasi+0104 bl kgeriv 84 ? 70 ? 6 ? 6 ? 2FF1A24C ?
    ktbwbi+00f8 bl kgeasi 20009408 ? 201287D4 ? 11A6 ?
    2 ? 0 ? C0 ? 8000 ? 0 ?
    kdisle+100c bl ktbwbi 2FB0 ? 11919F50 ? 0 ? 0 ?
    kdiins0+0f84 bl kdisle 69362E20 ? 2FF1A740 ?
    2FF1B008 ? 1000001 ? 80008 ?
    22243DE8 ? 2C002C ? 0 ?
    kauxsin+13e8 bl kdiins0 69362E20 ? 0 ? 0 ? 0 ? 0 ?
    0 ? 0 ? 80000 ?
    insidx+0388 bl kauxsin 69362DD4 ? 117694C4 ? 0 ?
    201B4278 ? 201B4308 ?
    201B4350 ? 201B4260 ? 0 ?
    insflush+013c bl insidx 88 ?
    insrow+04a0 bl insflush 201B41D4 ? 1 ? 2FF1DE48 ?
    insdrv+0450 bl insrow 201B41D4 ? 2FF1DE48 ? 0 ?
    insexe+04ec bl insdrv 201B41D4 ?
    opiexe+1f2c bl insexe 63406C80 ? 3 ?
    opiall0+0c60 bl opiexe 4 ? 2 ? 2FF1F7F0 ?
    kpoal8+0678 bl opiall0 5E ? 22 ? 2FF1FAA8 ? 0 ?
    2FF1FA50 ? 20121CB8 ? 5EB ?
    4422022 ?
    opiodr+0668 bl _ptrgl
    ttcpip+09d8 bl _ptrgl
    opitsk+066c bl ttcpip 57B ? 200AEA88 ? 2FF21288 ?
    7FF ? 1 ? 0 ? 20067B70 ? 4C ?
    opiino+061c bl opitsk 2000CE18 ?
    opiodr+0668 bl _ptrgl
    opidrv+0450 bl opiodr 3C ? 4 ? 2FF229C8 ? 0 ?
    sou2o+0028 bl opidrv 3C ? 4 ? 2FF229C8 ?
    main+0130 bl sou2o 0 ? A0 ? 2FF22890 ? 0 ?
    __start+0088 bl main 2 ? 2FF22A38 ?
    ----- Argument/Register Address Dump -----
    Argument/Register addr=1.
    Dump of memory from 0x0 to 0x101
    000 00000000 00000000 00000000 00000000 [................]
    Repeat 15 times
    100 7C7243A6 [|rC.]
    Argument/Register addr=110276cd.
    Dump of memory from 0x1102768D to 0x110277CD
    11027680 4BFFFCA5 [K...]
    11027690 2C030000 40820020 3B5A0001 80010040 [,...@.. ;Z.....@]
    110276A0 3B390001 7C1A0040 4180FDF8 80610050 [;9..|[email protected]]
    110276B0 48000010 4BFD2989 60000000 38600001 [H...K.).`...8`..]
    110276C0 800100A8 818100A4 382100A0 7C0803A6 [........8!..|...]
    110276D0 BA21FFC4 7D808120 4E800020 00000000 [.!..}.. N.. ....]
    110276E0 00002043 800F0600 00000000 000002D8 [.. C............]
    110276F0 00096472 65696931 696E7300 BE21FFC4 [..dreii1ins..!..]
    11027700 607F0000 7C0802A6 7D800026 90010008 [`...|...}..&....]
    11027710 8003000C 91810004 2C000000 9421EF70 [........,....!.p]
    11027720 408207A0 60960000 83DF0000 60B50000 [@...`.......`...]
    <and go on>
    this file is huge, I just copy/paste the first part. I hope it helps.
    Thanks a lot, Sri.
    Robert

  • Create and insert into table from Oracle to MS SQL server.

    Hello,
    Oracle Database 11g and Red hat 5
    I have a very different kind of issue. I am handling the ORACLE db(remote db with all the important data). On the other side their is a MS SQL server db(local db with some testing data in it). All the users will access the ORACLE db for the actual processing but for sometime they need to apply some of their own concepts. So they will transfer the data from ORACLE to MS sql server.
    I want to create a code in ORACLE db like a procedure , which will create a table in MS sql server , insert data into it,Also create some metadata table to keep some of my table's info on MS SQL serve db,If the table is present it should append the data, .... like many things ...
    Overall my question is , how can i write a code to make these operation on a remote db, that to these operations are DDL and on MS SQL Server(Non-Oracle) ???
    Please guide me with some ideas or solutions ...
    Also provide if you have some good links to study ...
    thanks in advance.

    I'm not sure why you never visit http://tahiti.oracle.com prior to asking any question. Is it forbidden in your locale? Are you afraid of it? Will your salary be decreased when you visit the documentation?
    http://www.oracle.com/pls/db111/search?word=sql+server&partno=
    should provide sufficient information.
    Your doc question must be considered a violation of Forum Etiquette and an abuse of this forum.
    Sybrand Bakker
    Senior Oracle DBA

  • How to insert into table from an Datatable ?

    Hi Friend,
    I have a datatable that is created at some point in my SSIS as an object.
    I need to insert the data into a sql table, how should I do that ?
    I have this:
            Dim oleDA As New OleDbDataAdapter
            Dim dt As New DataTable
            Dim col As DataColumn
            Dim row As DataRow
            Dim sMsg As String
            oleDA.Fill(dt, Dts.Variables("history").Value
    and want to insert into a table in a SQL DB
            Dim sqlCon As New SqlClient.SqlConnection("server=Myserver\SQL2008R2;database=MyDB;Integrated Security=SSPI")
            Dim sqlreader As SqlClient.SqlDataReader
            sqlCon.Open()
    Thanks in advance,
    Pat
    Patrick Alexander

    Convert it to a ADO .Net recordset and store it in a object variable in SSIS.
    Then you can use it to populate the table using foreach loop with ado enumerator
    http://www.codeproject.com/Articles/10503/Simplest-code-to-convert-an-ADO-NET-DataTable-to-a
    Please Mark This As Answer if it solved your issue
    Please Vote This As Helpful if it helps to solve your issue
    Visakh
    My Wiki User Page
    My MSDN Page
    My Personal Blog
    My Facebook Page

Maybe you are looking for

  • How to create a matt for art simple objects on white.

    I would like to edit with a bunch of photos of objects from a book. They were all shot against white. can I get rid of the white background? I'm running FCP5 mac pro   Mac OS X (10.4.8)  

  • XI to AS/400 DB2 connectivity_doubt

    Hi, has anyone connected to an AS/400 DB2 from XI's Sender JDBC Adapter? if so, can you please suggest the procedure and the <b>driver</b> that was used. Regards, Balaji.M

  • Ipod songs not showing up in itunes

    Although my ipod (5G - new in October) is showing up in itunes, it is not showing any of the songs on it. Today i imported two new CDs into itunes, and then added them onto the ipod - which says it has imported them, but they are not actually showing

  • Low battery life, heat or noise with Macbook pro? SOLUTION HERE

    Low Battery? Warm unit on Idle? Loud fan? Likely solution is here.. I have a new 15" and had these issues, found the only working solution in the thread below, safe and easy to use. If you are worried do a time machine backup before doing this. Go he

  • Graphics card issues after updates.

    I've recently started experimenting with the 3D capabilities of Ps CS6 so was excited for the recent update. Frustratingly this update has removed all the functionality of 3D because of the vRAM of my graphics card (256mb). I'm in no posistion to rep