Creating extra tables while reversing the schema

Hi,
while reversing a schema, ODI is createing some extra tables with name starting BIN....
BIN$n0N0JG+2TE676lf8wPm3Kw==$0
BIN$B3QnNwKfRwiJBzUokrdaOQ==$0
BIN$SlMSt8GRTMeRu92uIx77zA==$0
BIN$jdFr+kpVQkKobqoU6OY4fw==$0
BIN$iRX5BQw3TR+jEGZfvUB1cQ==$0
BIN$3lg8BtTjQ5S0m/E2Sm5Fxw==$0
These extra tables are creating problems.
Please help me why these tables are getting created.....
Thanks,
Naveen Suram

Oracle maintains a recycle bin for dropped objects starting with Oracle 10g. Dropped tables go "into" the recyclebin, and can be restored (undropped) from the recycle bin.
The recycle bin is enabled by default.
SQL>ALTER SYSTEM SET recyclebin = OFF; -- It will disable recycle bin for the entire database
SQL> ALTER SESSION SET recyclebin = OFF; -- It will disable recycle bin for the session
Tables can also be dropped without sending them to the recycle bin.
DROP TABLE t1 PURGE;
Thanks,
Sutirtha

Similar Messages

  • How can I create a table in other's schema?

    I have two users say 'user1' and 'sanju' along with other users in the database.Both the users are granted a connect role. I have connected as a 'sanju' user. Now I want to create a table in schema 'user1'.
    Please note that user 'sanju' should not be allowed to create table in any other user's schema.
    I have set the current schema of 'sanju' as 'user1'.
    ALTER SESSION SET CURRENT_SCHEMA=USER1
    I know that 'grant create ANY table to sanju' will allow 'sanju' to create table in all the schema. I dont want that. Is there any way to create a table in any other's schema?
    Please answer ASAP

    This is not directly possible, but you can use following workaround:
    connect user1/passwd
    create or replace procedure testCreateTable as
    begin
    execute immediate 'create table user1.testTable(c char)';
    end test;
    grant execute on testCreateTable to sanju;
    connect sanju/passwd
    execute testCreateTable
    Of course, you can make this procedure more generic by specifying the necessary parameter.
    Please not that this procedure only works, if user1 was granted the create table privilege directly, and not through a role (e.g. dba), because roles are disabled when executing

  • Error while reversing the GR from m.type 103 to 105

    Hi There,
    My scenario is once PO is created, then created the inbound delivery in VL31N against PO,after that post the GR with movement type 103 once inspection is complete then while reversing with m.type 105.
    system is giving error message that INBOUND DELIVERY STORAGE LOCATION CAN NOT BE CHANGED TO HERE
    When post the GR against the PO with m.type 103 system is allowing to post,but while reversing the document from m.type 103 to 105 system is giving above said error message,then entered the storage location in GR even though system is not allowing to reverse the document.
    If we enter the storage location in PO and Inbound delivery with out any problem system is allowing to post the GR with m.type 103 and reversing also allowing with m.type 103 to 105.
    So here I want to post the GR with m.type 103 and reverse with m.type 105 with out storage location in PO and inbound delivery. so for this issue is there any solution.
    EARLY ACTION IN THIS ISSUE WILL BE HIGHLY APPRECIATED
    Edited by: sapmm99 on Jul 13, 2010 6:48 PM

    >
    sapmm99 wrote:
    > Hi There,
    >
    > My scenario is once PO is created, then created the inbound delivery in VL31N against PO,after that post the GR with movement type 103 once inspection is complete then while reversing with m.type 105.
    > system is giving error message that INBOUND DELIVERY STORAGE LOCATION CAN NOT BE CHANGED TO HERE
    >
    > When post the GR against the PO with m.type 103 system is allowing to post,but while reversing the document from m.type 103 to 105 system is giving above said error message,then entered the storage location in GR even though system is not allowing to reverse the document.
    >
    > If we enter the storage location in PO and Inbound delivery with out any problem system is allowing to post the GR with m.type 103 and reversing also allowing with m.type 103 to 105.
    >
    > So here I want to post the GR with m.type 103 and reverse with m.type 105 with out storage location in PO and inbound delivery. so for this issue is there any solution.
    >
    > EARLY ACTION IN THIS ISSUE WILL BE HIGHLY APPRECIATED
    >
    > Edited by: sapmm99 on Jul 13, 2010 6:48 PM
    You should use the inbound delivery to post the GR doc not the PO.
    MIGO>Goods receipt>inbound delivery
    try that

  • Insert to multiple tables while keeping the referential integrity

    I would like to confirm whether we can have both updatable and reference for secondary entity. It seems to me that even though both updatable and reference can be checked for secondary entity, the secondary entity is not updatable.
    There are some scenarios that I hope to create the "parent" and "child" at the same time in the UI. For example, Employee and ProductExpertise which is in m:m relationship. We have three tables: Employee, EmployeeProduct, and Product. We have two view object, EmployeeVO which contains EmployeeEO, EmployeeProductVO which contains EmployeeProductEO and ProductEO. This can display EmployeeVO as master, and EmployeeProductVO as detail. However when we add a new product for the employee, we can only associate an existing product. We would like to create a new product and associate the product with employee. This cannot be achieved by the current EmployeeProductVO.
    I wonder if ADF supports inserting to multiple tables while keeping the foreign key reference integrity? In other words, in a 1:1..* (1 to 1 or 1 to many) relationship, must we have a master-detail view where we add parent first, then add child? Does ADF support adding both parent and child together with the correct foreign key assigned automatically for the child? Do we need to write code to do it?
    Any insight is appreciated.

    Hi,
    Assuming you are talking about ADF Business Components, yes, the framework can handle a batch insert that inserts both parent and child records in the same transaction. A few things that you may want to review:
    1). If you are using a database sequence for your primary keys (your question "Does ADF support adding both parent and child together with the correct foreign key assigned automatically for the child" made me think perhaps you were), have a read of the Fusion Developer's guide about the DBSequence type.
    2). In the same guide, have a read of section 38.8 - it talks about the small bit of code you may need to write to ensure the parent record is posted before the children, and also discusses about associations that are based on DB Sequences.
    Best,
    John

  • How to create new folders while installing the VI in some other PC

    Hi,
         I want to create a folder while installing the VI to some other maching using installer/setup.exe and also i want to copy some excel file to the c: drive of installing PC while installing is their anyway to do this. Please help me in this regards
    Regards
    Shivakumar Singh

    Hi
    If you are installing vi from CD, then you might use the first approach with application builder.
    If you just want to use any CD, than I think you should consider some interactive script with the user.
    You can easily creat one with the windows commands, by means of *.cmd files. You can read about it by typing "help cmd" and/or "help" in the RUN in Windows. Then I propose to search the web for some examples on how to write the cmd scripts. If you know TCL there will be no problem for you.
    You can also try to ask some dudes on the WinNT newsgroup. They will write it in no time.
    Unfortunatelly I have now no time to write the script for you.
    good luck
    Pawel

  • Update LIKP table while saving the output type in VT02N transaction

    Hi All,
    I have a requirement where i have to update Delivery Priority(LPRIO) field in LIKP table while saving the output type in VT02N transaction. I am not able to use the BAPI "BAPI_OUTB_DELIVERY_CHANGE" or FM "WS_DELIVERY_UPDATE" because, when we save the output type the programs that are configured in NACE are triggered in update mode and hence i will get a roll back error.
    Let me know other ways of updating the table at the time of saving output type for shipment transaction VT02N.

    This could be a result of one of the following reasons:
    1: Incorrect smart form/routine assigned in the output configuration (NACE)
    2: Serial number range of the delivery expired
    3: The default settings of the user (SU01) processing the delivery is missing the default printer name.
    Hope this is helpful
    Manish

  • Access other schema's table without specify the schema name

    Hi, need ur help again,
    I would like to access other schema's table without specify the schema name. for example,
    select * from hr.jobs;
    What priviledges i need if i want to select the data in this way:
    select * from jobs;
    Thanks!

    Public synonyms have their place, but are not generally a good idea as they will cause conflicts with other schemas and applications. Another think that you can do is issue the
    ALTER SESSION set CURRENT_SCHEMA = schema;
    The CURRENT_SCHEMA (8i and above) parameter changes the current schema of the session to the specified schema. Subsequent nqualified references to schema objects during the session will resolve to objects in the specified schema. The setting persists for the duration of the session or until you issue another ALTER SESSION SET CURRENT_SCHEMA statement. CURRENT_SCHEMA is a session parameter only, not an initialization parameter.
    This setting offers a convenient way to perform operations on objects in a schema other than that of the current user without having to qualify the objects with the schema name. This setting changes the current schema, but it does not change the session user or the current user, nor does it give you any additional system or object privileges for the session.

  • Error while reversing the PGI

    Hi All,
    We got the following error message while reversing the PGI.
    " Goods issue for the delivery 123456 cannot be cancelled for the following reasons.
    Deficit of Customer stock unr. 2 EA : Material  Plant  V ".
      Message No : M7021.
    pease help on this.

    hi
    Check some where in delivery exit some one has put check to check free stock at the time of PGI and the system is checking the same at the time of reversal too. The sy-ucom is VABU_T for PGI give this logic like
    if Sy-ucom is VABU_T then only check for free stock.
    Please check and post the solution too. So it will helpful for all.
    Thx.

  • "Frame Blending" while reversing the clip..?

    Do I suppose to use "Frame Blending" while reversing the clip..? When going to check the "Reverse" in order to reverse direction of a movement of the clip - it is already checked by default... B U T - when I UNchecked it the quality of the footage with the reversed movement was somehow more clear.. (this is before rendering - just watching in the Viewer).
    Is there any general rule regarding this "Frame Blending" (while reversing the clip)? Can I just trust the Viewer quality/difference between when the "Frame Blending" is checked and when is unchecked?

    Hi all, and thanks for trying and commenting my plugins.
    marekn,
    unfortunately there are 2 potential limits in the use of both my Time Remap plugin and the corresponding FCP built-in Time Remap Function:
    a. +only the speed of the video portion+ of the clip is modified, and there is no way I know to change speed of the corresponding audio accordingly;
    b. the +clip length does not adapt to the new speed+ (longer for a lower speed, shorter for a higher speed - as in the Speed command).
    If the average speed of the clip after applying the plugin is lower than its original speed a number of its last frames will be cut off the clip; in the opposite case instead the last frames of the clip will be a freeze frame of the last frame in the original clip.
    Only the Speed command in both FCE and FCP changes speed of the audio and adapts the clip length: but Speed applies only a constant speed for the whole clip (not variable as Time Remap). Note that also Fit to Fill changes the audio speed and the clip length, because it basically applies a constant Speed change...
    So, marekn, I'm afraid then there is no simple solution to your problem.
    If you want the audio to keep in sync with the video while changing speed you have to unlink audio from video, apply Time Remap to the video and fix the audio by splitting it onto sections with different constant speeds, using the Speed command only applied to audio.
    About the length of the clip you can use the workaround described in the last Hint (d.) in the Time Remap instructions: it basically suggests to apply Time Remap to a +nested sequence+ containing your clip followed by a stub: the new nested sequence should be long enough to contain the new 100%-50%-100% modified clip. In practice you could make it even longer and than cut off the needless frames after applying the plugin.
    I hope this helps.
    Piero

  • Azure Website doesn't recognize my Database's Table after changing the Schema

    I have a Microsoft Azure Website running and working with an Azure SQL Database for the sole purpose of storing and retrieving user accounts. However I needed a mobile client as well there fore according to numerous tutorials online such as [THIS][1],
    I had to change the 'schema' of the database from 'dbo' to my mobile service's name which is 'usermobileservice'. 
    This was done using the SQL query:
    CREATE SCHEMA usermobileservice;    ALTER SCHEMA usermobileserviceTRANSFER dbo.usertable;
    This did the trick and I was able to connect to the Database using my mobile applications BUT now I can't access the database using my Azure Website! Gives me this error:
    Server Error in '/' Application.
    Invalid object name 'UserTable'.
    Description: An unhandled exception occurred during the execution of the current web request. Please review the stack trace for more information about the error and where it originated in the code. 
    Exception Details: System.Data.SqlClient.SqlException: Invalid object name 'UserTable'.
    I believe the ASP.NET Web Application cannot find the Database Table anymore since I changed the schema? What is the right way of sharing the data between a Website and a Mobile Service?

    Hi,
    Thank you for your post.
    I am trying to involve someone familiar with this topic to further look at this issue.
    In the meantime, please have a check on the below link and check if it helps.
    https://social.msdn.microsoft.com/Forums/azure/en-US/60764eb6-17d0-4395-a887-2a793b44ce88/connect-mobile-service-to-an-existing-database?forum=azuremobile
    Regards,
    Mekh.

  • Error while reversing the GR

    Hi
    I have a function module which is used to create and reverse a GR for a purchase order based on movement type. When the movement type is 101 it creates the GR and when it is 102 reverses the GR.
    For creating the GR, function module BAPI_ENRTYSHEET_CREATE is used which creates a service entry sheet and inserts this record in ESKN table.
    his function module is followed by BAPI_TRANSACTION_COMMIT and BAPI_ENTRYSHEET_RELEASE.
    For reversing the GR, function module BAPI_ENTRYSHEET_RESET_RELEASE is used in which corresponding service entry sheet is fetched based on PO number and item number and this record is inserted in ESKN table.
    I have a situation in which we are creating a GR for a PO of movement type 101 and the corresponding details are inserted into ESKN table and then we are reversing the GR of movement type 102 for the same PO, here details corresponding to this GR has to be inserted into ESKN table but it is trying to insert the details of previous record of movement type 101 and throwing the dump as duplicate entries.
    please help to avoid this error.
    Thanks.

    If you are using only standard BAPI and absolutely zero direct table inserts, open an support message in http://service.sap.com/support.
    Create an example in SE37 for the BAPI that is throwing the error, and include that test data in the support message.
    SAP will not support Z programs, so don't even try to talk about your program. Just talk about the BAPI that is throwing the error. This is very important.

  • Problem while Creating Control files while Cloning the Oracle DB

    Hi,
    I am failrly new to Oracle Administration. I have got the task of cloning our Production database into a new machine. With the help of various articles found over the web I have followed the below mentioned steps
    1)Executed the Alter database command for getting the control file copy.
    2) Taken the Datafiles,Control and redo log files copies into the Target machine.
    3) Copied the Pfile with the neccessary changes into the target machine.
    4) Edited the Create Control file syntax (generated from step 1) and executed the same on the target machine.
    Now the problem I face is that I get the following error while executing the create Control file syntax
    a)ORA-01503 - Creation of Controlfile failed.
    b) ORA-00219 - Required controlfile size 41760 exceeds max allowable size 20000.
    I am really stuck. Both my machine configurations and O/S installed are the same.
    Please advice me on how to Proceed... Thanking you all in advannce.
    Rgds,
    SN.

    Hi Jaffer,
    This is my code........ The control file has been generated by executing the syntax alter database backup controlfile to trace at the source db .
    STARTUP NOMOUNT pfile=ORADATA:ORAHOME1\ADMIN\ORACLE\PFILE\INIT.ORA;
    CREATE CONTROLFILE set DATABASE "ORACLE" RESETLOGS NOARCHIVELOG
    MAXLOGFILES 32
    MAXLOGMEMBERS 2
    MAXDATAFILES 32
    MAXINSTANCES 16
    MAXLOGHISTORY 65535
    LOGFILE
    GROUP 1 'ORADATA:ORAHOME1\ORADATA\ORACLE\LOG2ORCL.ORA' SIZE 200K,
    GROUP 2 'ORADATA:ORAHOME1\ORADATA\ORACLE\LOG1ORCL.ORA' SIZE 200K
    DATAFILE
    'ORADATA:ORAHOME1\ORADATA\ORACLE\SYS1ORCL.ORA',
    'ORADATA:ORAHOME1\ORADATA\ORACLE\USR1ORCL.ORA',
    'ORADATA:ORAHOME1\ORADATA\ORACLE\RBS1ORCL.ORA',
    'ORADATA:ORAHOME1\ORADATA\ORACLE\BTXIS_DATA.ORA',
    'ORADATA:ORAHOME1\ORADATA\ORACLE\BTXIS_INDEX.ORA',
    'ORADATA:ORAHOME1\ORADATA\ORACLE\BTXIS_KAN_DAT.ORA',
    'ORADATA:ORAHOME1\ORADATA\ORACLE\BTXIS_KAN_INDEX.ORA',
    'ORADATA:ORAHOME1\ORADATA\ORACLE\BTXIS_KIS_DATA.ORA',
    'ORADATA:ORAHOME1\ORADATA\ORACLE\BTXIS_KIS_INDEX.ORA',
    'ORADATA:ORAHOME1\ORADATA\ORACLE\BTXIS_LUB_DATA.ORA',
    'ORADATA:ORAHOME1\ORADATA\ORACLE\BIMBJ01.DBF',
    'ORADATA:ORAHOME1\ORADATA\ORACLE\BIMAT01.DBF',
    'ORADATA:ORAHOME1\ORADATA\ORACLE\BITPA01.DBF',
    'ORADATA:ORAHOME1\ORADATA\ORACLE\BLUBFSINDEFX01.DBF',
    'ORADATA:ORAHOME1\ORADATA\ORACLE\TEMP01.DBF',
    'ORADATA:ORAHOME1\ORADATA\ORACLE\BTXIS_TOOLS.ORA',
    'ORADATA:ORAHOME1\ORADATA\ORACLE\IMPORT1.DBF'
    CHARACTER SET WE8ISO8859P1
    # Recovery is required if any of the datafiles are restored backups,
    # or if the last shutdown was not normal or immediate.
    #RECOVER DATABASE
    # Database can now be opened normally.
    #ALTER DATABASE OPEN;
    # No tempfile entries found to add.
    #

  • Create Dynamic table name in the select statement.

    I use oracle reports 6i to make myrep.rdf , this report created using certain select query Q1, I created a formula column in this report,
    in the formula column  I write pl/sql block statements to select the data from certain table depends on the output of a column in Q1,
    I want to make the pl/sql block dynamically enough to change the user which I select the data from depends on the connected user
    Ex: if I connected with user = 'KAM14'
    the pl/sql block will be
    select x into v_value from kam13.bil_file where .....;
    and if  I connected with user = 'KAM13'
    the pl/sql block will be
    select x into v_value from kam12.bil_file where .....;
    and so on
    how can I do this in the pl/sql block ...
    Thanks in Advance.

    I am not sure I understood properly, but I think you should create bil_file table under a different user and create synonyms  under KAM1x users.
    Regards

  • Select all fields of a table while designing the layout of a query

    Can some one tell me how to select all fields of a table at a single stroke while designing the layout of a query....this would greatly reduce the time spent to select each and every field of a table into the layout....
    Thanks in advance

    Hi,
    Declare your internal table (Say it is itab).
    Then :-
    Select * from <tablename>.
    Eg,.Select * from mara.
    Then display it using:-
    Loop at itab.
    write:/ wa_itab.   "Workarea.
    endloop.
    Thanks and regards,
    Prerna

  • Create a table with all the months between two dates

    Hi all,
    I have a purchase table recording individual purchases. One of the fields is my Date field (date of purchase).
    I would like to create a table 'All_months' with two entries ('month_no' and 'month') which will be based on the first and last date in the purchase table. Assuming the first purchase recorded in my purchase table was on the 12th of January 2008, the table should have the following structure:
    month_no month
    1 12JAN2008
    2 12FEB2008
    3 12MAR2008
    It should continue in this fashion up-to the month where the last purchase was recorded.
    I have been struggling with creating the query that would do that for days now and can't find anything when asking Mr Google.
    Thanks,
    Chris

    Welcome to the forum!
    Here's one way:
    CREATE TABLE     all_months
    AS
    SELECT     LEVEL                    AS month_no
    ,     ADD_MONTHS ( first_date
                 , LEVEL - 1
                 )               AS month     
    FROM     (
              SELECT     MIN (date_of_purchace)     AS first_date
              ,     MAX (date_of_putchase)     AS last_date
              FROM     purchase
    CONNECT BY     LEVEL <= 1 + MONTHS_BETWEEN ( TRUNC (last_date,  'MONTH')
                                 , TRUNC (first_date, 'MONTH')
    ;Do you really need a table like this? Every time you change the data in the purchase table, you won't know if all_months is still accurate or not. You can derive all_months in a sub-query every time you need it, or make all_months a view instead of a table.
    Edited by: Frank Kulash on Jun 14, 2012 5:57 AM

Maybe you are looking for