Unable to create DAC DW tables

Hi,
I have dropped all DW tables from DAC. I am getting the error 'access denied' in the log file when i try to create the DW tables. I checked the ODBC connection and it is working fine.
Its a great help for me if some one reply this.
Thanks in advance,

That solved the problem. Thank you so much, Scott.
Before granting those permissions, I was able to create tables in sql workshop using sql commands, that seems to me I've already have the create table permission. Does this happen only when trying to create access control page?
I am puzzled about granting these permissions since dba role should be able to do anything. Could you share more info on how and why I need to do those extra grants?
Thanks,
Yivon

Similar Messages

  • Getting error while creating form and report on webservice: ORA-20001: Unable to create form on table. ORA-02263: need to specify the datatype for this column.

    i am using the following description to create a web service reference:
    web reference :REST
    Name :Yahoo Map
    URL :http://local.yahooapis.com/MapsService/V1/mapImage
    HTTP Method: GET
    Basic Authentication: No
    Add Parameter:
    Name       Type
    appid        String
    location    String
    Output Format: XML
    XPath to Output Parameters : /Result
    Output Parameter:
    Name       Path       Type
    Url          /text()      String
    Then i tried to create form and report on webservice:
    Web Service Reference Type: Yahoo Map
    Operation: doREST
    All the fields i keep as default
    I tick the checkbox (url)in report Parameter
    After clicking next whereever required i click create button
    I get the following error
    ORA-20001: Unable to create form on table. ORA-02263: need to specify the datatype for this column.
    Please someone help to solve this as i need to fix it urgently.

    i exported the application from apex.oracle.com and imported it to our environment
    import went fine, but when I ran the IR page I got
    ORA-20001: get_dbms_sql_cursor error ORA-00904: : invalid identifier
    evidently the problem is a lack of public execute on DBMS_LOB, which is used in the generated IR source.
    while waiting for the DBA to grant privs on DBMS_LOB, changing the dbms_lob.getlength call to length() fixes the IR.
    however, i am not getting the download link on the associated form page... changed templates, that's not the issue -- we'll see if that's a dbms_lob issue as well

  • APEX:Getting error while creating form and report on webservice: ORA-20001: Unable to create form on table. ORA-02263: need to specify the datatype for this column.

    I am using Apex 4.2.2.00.11
    am using the following description to create a web service reference:
    web reference :REST
    Name :Yahoo Map
    URL :http://local.yahooapis.com/MapsService/V1/mapImage
    HTTP Method: GET
    Basic Authentication: No
    Add Parameter:
    Name       Type
    appid        String
    location    String
    Output Format: XML
    XPath to Output Parameters : /Result
    Output Parameter:
    Name       Path       Type
    Url          /text()      String
    Then i tried to create form and report on webservice:
    Web Service Reference Type: Yahoo Map
    Operation: doREST
    All the fields i keep as default
    I tick the checkbox (url)in report Parameter
    After clicking next whereever required i click create button
    I get the following error
    ORA-20001: Unable to create form on table. ORA-02263: need to specify the datatype for this column.
    Please someone help to solve this as i need to fix it urgently.

    336554,
    Looks like there is a 127-column limit on the number of report columns supported when using that wizard. Do you have more than that?
    57434

  • Unable to create binary xmltype table

    HI Gentlemen,
    As I have serious difficulties with O-R storage, I now tried to create my ebm table in binary storage. The schemas were registered, no SQL-annotations at all.
    When I try to create the table, I always get an error message (see below). Does anybody know how to circumvent this?
    Thanks, regards
    Miklos HERBOLY
    SQL> @showkbvschemas
    SQL> /*
    SQL>   showKbvSchemas.sql
    SQL> */
    SQL> select any_path from resource_view where any_path like '%GKSADMIN%'
      2  /
    ANY_PATH                                                                       
    /sys/schemas/GKSADMIN                                                          
    /sys/schemas/GKSADMIN/EBM                                                      
    /sys/schemas/GKSADMIN/EBM/datentypen_V1.40.xsd                                 
    /sys/schemas/GKSADMIN/EBM/ehd_header_V1.40.xsd                                 
    /sys/schemas/GKSADMIN/EBM/ehd_root_V1.40.xsd                                   
    /sys/schemas/GKSADMIN/EBM/go_body_V1.30.xsd                                    
    /sys/schemas/GKSADMIN/EBM/go_header_V1.30.xsd                                  
    /sys/schemas/GKSADMIN/EBM/go_root_V1.30.xsd                                    
    /sys/schemas/GKSADMIN/EBM/keytabs_V1.40.xsd                                    
    17 Zeilen ausgewählt.
    SQL> /* eof */And now let us try to create the table:
    SQL> @crbinebm
    SQL> /* createBinaryEbmTable.sql */
    SQL> drop table ebm
      2  /
    drop table ebm
    FEHLER in Zeile 1:
    ORA-00942: Tabelle oder View nicht vorhanden
    SQL> CREATE TABLE ebm OF XMLType
      2    XMLTYPE STORE AS BINARY XML
      3    XMLSCHEMA          "EBM/go_root_V1.30.xsd"
      4    ELEMENT               "ehd"
      5    VIRTUAL COLUMNS
      6        (KV_COL AS (XMLCast(XMLQuery('xquery version "1.0"; (: :)
      7         declare namespace ehd="urn:ehd/001"; (: :)
      8         /ehd:ehd/ehd:header/ehd:provider/ehd:organization/ehd:id/@EX'
      9         PASSING OBJECT_VALUE RETURNING CONTENT)
    10         AS number)))
    11    PARTITION BY LIST (kv_COL)
    12        (
    13        PARTITION kv_Schleswig_Holstein VALUES ('01'),
    14        PARTITION kv_Hamburg VALUES ('02'),
    15        PARTITION kv_Bremen VALUES ('03'),
    16        PARTITION kv_Niedersachsen VALUES ('17'),
    17        PARTITION kv_Westfalen_Lippe VALUES ('20'),
    18        PARTITION kv_Nordrhein VALUES ('38'),
    19        PARTITION kv_Hessen VALUES ('46'),
    20        PARTITION kv_Rheinland_Pfalz VALUES ('51'),
    21        PARTITION kv_Baden_Wuerttemberg VALUES ('52'),
    22        PARTITION kv_Bayerns VALUES ('71'),
    23        PARTITION kv_Berlin VALUES ('72'),
    24        PARTITION kv_Saarland VALUES ('73'),
    25        PARTITION kbv VALUES ('74'),
    26        PARTITION kv_Mecklenburg_Vorpommern VALUES ('78'),
    27        PARTITION kv_Brandenburg VALUES ('83'),
    28        PARTITION kv_Sachsen_Anhalt VALUES ('88'),
    29        PARTITION kv_Thueringen VALUES ('93'),
    30        PARTITION kv_Sachsen VALUES ('98')
    31        )
    32  /
      XMLTYPE STORE AS BINARY XML
    FEHLER in Zeile 2:
    ORA-06502: PL/SQL: numerischer oder Wertefehler: Zeichenfolgenpuffer zu klein
    ORA-06512: in "XDB.DBMS_XDBUTIL_INT", Zeile 993
    SQL> /* EOF */
    SQL> spool offJust for your information, my table creation as pure relational, with one xmltype column based on the ebm schemas, was successful.

    HI Marco,
    Thank you very much. Yes, binary schema registration was OK. Then I visited the link you supplied and set up a createBinaryEbmTable script accordingly. Here are the results:
    SQL> @createBinaryEbmTable
    SQL> /* createBinaryEbmTable.sql */
    SQL> drop table ebm
      2  /
    Tabelle wurde gelöscht.
    SQL> CREATE TABLE ebm (
      2    kv               CHAR(2),
      3    xml_document          XMLType)
      4    SEGMENT CREATION IMMEDIATE
      5    NOCOMPRESS NOLOGGING
      6    TABLESPACE USERS
      7    XMLTYPE COLUMN xml_document STORE AS SECUREFILE BINARY XML
      8   (TABLESPACE USERS NOCOMPRESS  KEEP_DUPLICATES)
      9    XMLSCHEMA          "EBM/go_root_V1.30.xsd"
    10    ELEMENT               "ehd"
    11    PARTITION BY LIST (kv)
    12        (
    13        PARTITION kv_Schleswig_Holstein VALUES ('01'),
    14        PARTITION kv_Hamburg VALUES ('02'),
    15        PARTITION kv_Bremen VALUES ('03'),
    16        PARTITION kv_Niedersachsen VALUES ('17'),
    17        PARTITION kv_Westfalen_Lippe VALUES ('20'),
    18        PARTITION kv_Nordrhein VALUES ('38'),
    19        PARTITION kv_Hessen VALUES ('46'),
    20        PARTITION kv_Rheinland_Pfalz VALUES ('51'),
    21        PARTITION kv_Baden_Wuerttemberg VALUES ('52'),
    22        PARTITION kv_Bayerns VALUES ('71'),
    23        PARTITION kv_Berlin VALUES ('72'),
    24        PARTITION kv_Saarland VALUES ('73'),
    25        PARTITION kbv VALUES ('74'),
    26        PARTITION kv_Mecklenburg_Vorpommern VALUES ('78'),
    27        PARTITION kv_Brandenburg VALUES ('83'),
    28        PARTITION kv_Sachsen_Anhalt VALUES ('88'),
    29        PARTITION kv_Thueringen VALUES ('93'),
    30        PARTITION kv_Sachsen VALUES ('98')
    31        )
    32  /
    Tabelle wurde erstellt.
    SQL> /* EOF */
    SQL> @loadxmlfileascolumn_Int
    SQL> /* loadXmlFileAsColumn_INT.sql - interactive version */
    SQL> @@sourcedir
    SQL> /*
    SQL>   set SOURCE_DIR for XML
    SQL>   Parameter 1: source directory
    SQL> */
    SQL>
    SQL> create or replace directory SOURCE_DIR as '&source_directory'
      2  /
    Geben Sie einen Wert für source_directory ein: c:\gks\kbv\h\ebm
    alt   1: create or replace directory SOURCE_DIR as '&source_directory'
    neu   1: create or replace directory SOURCE_DIR as 'c:\gks\kbv\h\ebm'
    Verzeichnis wurde erstellt.
    SQL>
    SQL> declare
      2    InstanceDocument varchar2(4000);
      3  begin
      4    INSERT INTO &XMLTypeTable
      5        VALUES (&id, XMLType(bfilename('SOURCE_DIR', '&InstanceDocument'),
      6             nls_charset_id('ISO-8859-1')));
      7  end;
      8  /
    Geben Sie einen Wert für xmltypetable ein: ebm
    alt   4:   INSERT INTO &XMLTypeTable
    neu   4:   INSERT INTO ebm
    Geben Sie einen Wert für id ein: 46
    Geben Sie einen Wert für instancedocument ein: test46.xml
    alt   5:     VALUES (&id, XMLType(bfilename('SOURCE_DIR', '&InstanceDocument'),
    neu   5:     VALUES (46, XMLType(bfilename('SOURCE_DIR', 'test46.xml'),
    declare
    FEHLER in Zeile 1:
    ORA-31061: XDB-Fehler: XML event error
    ORA-19202: Fehler bei XML-Verarbeitung 
    LSX-00333: Message 333 not found; No message file for product=XDK, facility=LSX
    aufgetreten
    ORA-06512: in Zeile 4
    SQL> spool offAs you see, yet another issue: I modified the pattern in the corresponding scheme to grow in length step-by-step, and it did not like this as well. And, I really do not know, why no messages are found: my XDK_HOME points to %ORACLE_HOME%\XDK where the mesg files are, but som other parts of the XDK kit is under %ORACLE_HOM%\LIB. Any idea?
    Thanks, regards
    Miklos

  • I'm unable to create a new Table on SQL Azure.

    I'm trying to create a new table in my custom database. But i'm getting this error message:
    'Filegroup reference and partitioning scheme' is not supported in this version of SQL Server.'
    Here is the sample create schema:
    CREATE TABLE dbo.[Contact](
    [ID] [int] IDENTITY(1,1) NOT NULL,
    [FirstName] [nvarchar](250) NULL,
    [LastName] [nvarchar](250) NULL,
    [InsertDateTime] [datetime] NULL,
    [UpdateDateTime] [datetime] NULL,
    [PhoneNo1] [nvarchar](50) NULL,
    [CellNo1] [nvarchar](50) NULL,
    [IsActive] [bit] NOT NULL,
    CONSTRAINT [PK_Contact] PRIMARY KEY CLUSTERED
    [ID] ASC
    )WITH (STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF) ON [PRIMARY]
    ) ON [PRIMARY]
    GO
    BT

    In addition to Neil's comment, I would add that one of the major strengths of SQL Azure is its simplicity from an administrative standpoint while providing as much parity as possible for the relational and programming stack.  In somes
    cases, less is more. SQL Azure is an example.  By having a simpler system we are able to get certain capabilities not available on premise. Take a look at the CREATE DATABASE XYZ AS COPY OF operation for example, you do not have to worry about finding
    a server with enough space; you do not have to worry about moving files around a network or creating shares between machines; and best of all, you do not have to any kind or provisioning of cleanup as a result of cloning a database. The upcoming Data Federation
    feature is another example of what you can achieve when you are free of underlying configuration details.
    That's not to say SQL Azure wouldn't benefit from some capabilties of the SQL Server platform (for example TDE); but personally I am happy that two years later we still don't have to worry about many of those low-level configuration details.
    Herve Roggero, Blue Syntax MVP SQL Azure Co-Author: Pro SQL Azure

  • Unable to create visual composer table view from the Bex Query

    Hi
    I am trying to create the visual composer lay out from a Bex query. The Bex query contains a set of Key figures and a structure.
    These key figure and structure combination is forming a table in the query output. Key figure parameters are coming as rows and Structure parameters are coming as columns.
    example query out put:
    Total, HPC, FDS excel ICe etc are as Structure elements and coming as columns in query out put and
    Invoice value, Gross sale value, Efficient operations etc are as Key figure elements in query and coming as rows in query out put.
    But if I map this query to visual composer table view all these are coming as columns as given below.
    Total Invoice value ,             Total Gross sale value,    Total Efficient operations,      HPC Invoice vale,.........
    And if execute the query will giving the out put in single row.
    Can anybody help me out to map this in the row column format?
    Is it really possible to do in VC?
    I am using CE 7.2. The VC model I need to be embedding in BPM.
    Please help me to solve this issue. I completely stuck up this issue.
    Regards
    Sajith P
    Edited by: Sajith P on Aug 17, 2010 3:07 PM
    Edited by: Sajith P on Aug 17, 2010 3:15 PM

    Hi,
    Try to use some function module which will convert query data into flat tables. (eg., RS_VC_GET_QUERY_VIEW_DATA_FLAT).
    Hope this solves your issue.
    Regards,
    Vinay

  • Unable to Create Fact and Dimension tables from the Tools menu in EIS conso

    Hi All,
    In the EIS console, I am unable to create the fact table and the dimension tables to produce my OLAP model from the TOOLS menu whereas I am able to create them by dragging from the left panel where the tables are displayed. I am geeting the below error message:
    "An exception occured while retrieving OLAP model metadata. Please verify you are connected to the catalog and try again"
    Any help appreciated.
    Thanks,
    Raja

    I have fact and dimension tables in one server and i moved those stuff to another server.If I do that what happen to essbase and about totale EPM System.I want to know how to do this and what I can expect?
    Please reply

  • Unable to create table because object exists. Where do I find object ?? :-0

    Hi,
    I deployed some scripts to a database, had to roll it back and then deployed again but I'm unable to create a particular table. The error says an object already exists but I can't find it. Hope this isn't a dumb question. Oracle 10.2.0.4 2 node RAC on Linux
    I have looked through dba_objects for anything called LS_AURULD_RULEDATA or LI_AURULD_RULEDATA.
    Here is the command and error..........
    CREATE TABLE aee.T_AUDITRULEDEFINITION
    2 (
    OBID RAW(16) CONSTRAINT NN_AURULD_OBID NOT NULL,
    SECURE_COMPANY_FK RAW(16) CONSTRAINT NN_AURULD_SCFK NOT NULL,
    AUDITRULESET_FK RAW(16),
    AUDITRULECLASST_FK NUMBER(2,0),
    DESCRIPTION NVARCHAR2(128),
    FAILUREACTION_FK NUMBER(2,0),
    RULEDATA NCLOB,
    RULETYPE NVARCHAR2(50),
    SEQUENCENUMBER NUMBER(10,0),
    TAG NVARCHAR2(64)
    LOB(RULEDATA) STORE AS LS_AURULD_RULEDATA (INDEX LI_AURULD_RULEDATA)
    15 TABLESPACE MOTOR_TABLES;
    LOB(RULEDATA) STORE AS LS_AURULD_RULEDATA (INDEX LI_AURULD_RULEDATA) *
    ERROR at line 14:
    ORA-00955: name is already used by an existing object
    Any help appreciated

    Thanks for pointing me towards dba_lobs
    SQL> select TABLE_NAME,INDEX_NAME from dba_lobs where OWNER='AEE' and index_name like 'LI_AURULD%';
    TABLE_NAME INDEX_NAME
    BIN$XdjCvAyQhMrgQBCsZat/dQ==$0 LI_AURULD_RULEDATA
    I purged the recyclebin and all was ok

  • Error while creating Cross-reference table using Xreftool (PIP Ins)

    Error while running xref.sh script unable to create cross reference table.
    **Error: Exception in thread "main" java.lang.NoClassDefFoundError: oracle/tip/xref/tool/AdminTool**
    Could not find xref directory within tip folder (/OracleAS_1/bpel/docs/workflow/oracle/tip)
    searched for similar issue in OTN it says issue fixed by upgrading Oracle AS, we are using 10.1.3.4 MLR#8
    http://kr.forums.oracle.com/forums/thread.jspa?threadID=835446
    steps followed.
    Creating Cross-Reference Tables
    Complete the following procedure to create cross-reference tables.
    To create cross-reference tables
    1 Navigate to the following directory:
    %SOAHOME%/SiebelODOPPIP/scripts/
    2 Open the following file for editing:
    xref.sh
    3 Set the userid and passwd for logging into BPEL console on the appropriate lines.
    4 Set the correct SOA_HOME location on the appropriate line.
    5 Save and close the file.
    6 Make the file executeable:
    chmod +x xref.sh
    dos2unix xref.sh
    7 Change directory (cd) to integration/esb/bin under %SOAHOME%.
    8 Execute ../../../SiebelODOPPIP/scripts/xref.sh.
    I am using SOA suite 10.1.3.3 and getting same error
    Error: Exception in thread "main" java.lang.NoClassDefFoundError: oracle/tip/xref/tool/AdminTool

    Hi Abhijeet,
    please check in transaction FI01, about your data consistencies. You can use this wiki help in terms of Address, it it found any useful facts for you
    Address Checks - Business Address Services (BC-SRV-ADR) - SAP Library

  • Unable to create datawarehouse tables using DAC client

    Hi,
    We are facing error while creating data warehouse tables in DAC Client.
    Please find the below mentioned error message
    =====================================
    STD OUTPUT
    =====================================
    CREATING SIEBEL DATABASE OBJECTS
    F:\DAC\bifoundation\dac\UTILITIES\BIN\DDLIMP /I N /s N /u infdomain /p ******* /c DB_DAC /G "SSE_ROLE" /f F:\DAC\bifoundation\dac/conf/sqlgen/ctl-file/oracle_bi_dw.ctl /b "" /K "" /X "" /W N
    Error while importing Siebel database schema.
    =====================================
    ERROR OUTPUT
    =====================================
    Siebel Enterprise Applications ODBC DDL Import Utility, Version 7.7 [18030] ENU
    Copyright (c) 2001 Siebel Systems, Inc. All rights reserved.
    This software is the property of Siebel Systems, Inc., 2207 Bridgepointe Parkway,
    San Mateo, CA 94404.
    User agrees that any use of this software is governed by: (1) the applicable
    user limitations and other terms and conditions of the license agreement which
    has been entered into with Siebel Systems or its authorized distributors; and
    (2) the proprietary and restricted rights notices included in this software.
    WARNING: THIS COMPUTER PROGRAM IS PROTECTED BY U.S. AND INTERNATIONAL LAW.
    UNAUTHORIZED REPRODUCTION, DISTRIBUTION OR USE OF THIS PROGRAM, OR ANY PORTION
    OF IT, MAY RESULT IN SEVERE CIVIL AND CRIMINAL PENALTIES, AND WILL BE
    PROSECUTED TO THE MAXIMUM EXTENT POSSIBLE UNDER THE LAW.
    If you have received this software in error, please notify Siebel Systems
    immediately at (650) 295-5000.
    F:\DAC\bifoundation\dac\UTILITIES\BIN\DDLIMP /I N /s N /u infdomain /p ***** /c DB_DAC /G SSE_ROLE /f F:\DAC\bifoundation\dac/conf/sqlgen/ctl-file/oracle_bi_dw.ctl /b /K /X /W N
    Connecting to the database...
    Unable to connect to the database...
    I have established ODBC connection using Oracle client driver and able to connect with the oracle server.
    Oracle DB & client Version : 11.2.0.2- 64 bit
    DAC Version : 10.1.3.4.1
    Informatica version : 9.0.1
    OBIA : 7.9.6.3
    Can someone please help me to resolve this issue?
    Thanks,
    Prasanna

    The 64 bit odbc (odbcad.exe) which is in system32 folder contains oracle client 11g driver
    But in 32 bit odbc(odbcad.exe) which is in syswow64, I am not able to see the oracle client 11g driver.Instead Oracle Merant ODBC Driver in DAC 10g_Oracle OH888717393 is there
    When we try to establish connection with this driver, it is throwing following error
    Specified driver could not be loaded due to system error 193:
    *(Oracle Merant ODBC Driver in DAC 10g_Oracle OH888717393,*
    F:\DAC\bifoundation\dac\utilities\DataDirectODBC\seor820.dll).
    Can you please explain how to create dsn in 32 bit odbc also for oracle client?
    Thanks,
    Prasanna

  • Error while creating the DWH tables using DAC

    Hi,
    I am getting error while creating the DWH tables using DAC. I have created a ODBC DSN using merant driver with DAC repository DB credentials and the test connection is successful. And while creating the tables i gave the olap dw credentials and the DSN name which i created earlier. But it throws the error as below:
    Please find the below mentioned error message
    =====================================
    STD OUTPUT
    =====================================
    CREATING SIEBEL DATABASE OBJECTS
    F:\DAC\bifoundation\dac\UTILITIES\BIN\DDLIMP /I N /s N /u infdomain /p ******* /c DB_DAC /G "SSE_ROLE" /f F:\DAC\bifoundation\dac/conf/sqlgen/ctl-file/oracle_bi_dw.ctl /b "" /K "" /X "" /W N
    Error while importing Siebel database schema.
    =====================================
    ERROR OUTPUT
    =====================================
    Siebel Enterprise Applications ODBC DDL Import Utility, Version 7.7 [18030] ENU
    Copyright (c) 2001 Siebel Systems, Inc. All rights reserved.
    This software is the property of Siebel Systems, Inc., 2207 Bridgepointe Parkway,
    San Mateo, CA 94404.
    User agrees that any use of this software is governed by: (1) the applicable
    user limitations and other terms and conditions of the license agreement which
    has been entered into with Siebel Systems or its authorized distributors; and
    (2) the proprietary and restricted rights notices included in this software.
    WARNING: THIS COMPUTER PROGRAM IS PROTECTED BY U.S. AND INTERNATIONAL LAW.
    UNAUTHORIZED REPRODUCTION, DISTRIBUTION OR USE OF THIS PROGRAM, OR ANY PORTION
    OF IT, MAY RESULT IN SEVERE CIVIL AND CRIMINAL PENALTIES, AND WILL BE
    PROSECUTED TO THE MAXIMUM EXTENT POSSIBLE UNDER THE LAW.
    If you have received this software in error, please notify Siebel Systems
    immediately at (650) 295-5000.
    F:\DAC\bifoundation\dac\UTILITIES\BIN\DDLIMP /I N /s N /u infdomain /p ***** /c DB_DAC /G SSE_ROLE /f F:\DAC\bifoundation\dac/conf/sqlgen/ctl-file/oracle_bi_dw.ctl /b /K /X /W N
    Connecting to the database...
    28000: [DataDirect][ODBC Oracle driver][Oracle]ORA-01017: invalid username/password; logon denied
    Unable to connect to the database...
    any help is appreciated.
    Thanks,
    RM

    The fact that you are getting an "ORA-01017: invalid username/password; logon denied" message indicates that you are at least talking to the database.
    The log shows that username "infdomain" is being used. Can you double check the username and password you have in DAC in a SQL*Plus/SQL Developer session?
    Please mark if useful/helpful,
    Andy.

  • Unable to create the DataWarehouse content in DAC 11G

    Hi Ali,
    I am trying to create the Datwarehouse tables using the ETL configuration option in DAC 11G and it is throwing the below error.
    Could you pls check this and let me know how to resolve it. Thank you.
    69 SEVERE Tue Feb 19 15:25:56 GMT 2013 MESSAGE:::
    Table Name : W_PSFT_GLHIER_FLAT_DH_TMP
    Column Name: TENANT_ID.
    _**The column properties that are different :[statistics]**_
    EXCEPTION CLASS::: com.siebel.analytics.etl.sqlgen.disambiguator.TableDescriptorDisambiguatorException
    com.siebel.analytics.etl.sqlgen.disambiguator.TableColumnBeanDisambiguator.diambiguate(TableColumnBeanDisambiguator.java:92)
    com.siebel.analytics.etl.sqlgen.SqlGenDisambiguated.populateMasterMap(SqlGenDisambiguated.java:454)
    com.siebel.analytics.etl.sqlgen.SqlGenDisambiguated.prepareMasterTDMap(SqlGenDisambiguated.java:219)
    com.siebel.analytics.etl.sqlgen.SqlGenDisambiguated.generateOracleSqlFile(SqlGenDisambiguated.java:548)
    com.siebel.analytics.etl.sqlgen.SqlGenDisambiguated.generateSqlFileForAllTables(SqlGenDisambiguated.java:666)
    com.siebel.analytics.etl.sqlgen.SqlGenDisambiguated.generateDatabaseSpecificSqlFile(SqlGenDisambiguated.java:700)
    com.siebel.analytics.etl.sqlgen.CreateDWSchema.createDWSchemaForApplications(CreateDWSchema.java:92)
    com.siebel.etl.gui.configurator.CreateWSQLCommand.createDWSchema(CreateWSQLCommand.java:124)
    com.siebel.etl.gui.configurator.CreateWSQLCommand.execute(CreateWSQLCommand.java:61)
    com.siebel.etl.gui.configurator.StatusForm$TaskExecutor.runAllTasks(StatusForm.java:347)
    com.siebel.etl.gui.configurator.StatusForm$TaskExecutor.run(StatusForm.java:277)
    java.lang.Thread.run(Unknown Source)
    70 SEVERE Tue Feb 19 15:25:56 GMT 2013 MESSAGE:::Discrepencies have been found on some table column definitions!
    EXCEPTION CLASS::: java.lang.RuntimeException
    com.siebel.analytics.etl.sqlgen.SqlGenDisambiguated.populateMasterMap(SqlGenDisambiguated.java:472)
    com.siebel.analytics.etl.sqlgen.SqlGenDisambiguated.prepareMasterTDMap(SqlGenDisambiguated.java:219)
    com.siebel.analytics.etl.sqlgen.SqlGenDisambiguated.generateOracleSqlFile(SqlGenDisambiguated.java:548)
    com.siebel.analytics.etl.sqlgen.SqlGenDisambiguated.generateSqlFileForAllTables(SqlGenDisambiguated.java:666)
    com.siebel.analytics.etl.sqlgen.SqlGenDisambiguated.generateDatabaseSpecificSqlFile(SqlGenDisambiguated.java:700)
    com.siebel.analytics.etl.sqlgen.CreateDWSchema.createDWSchemaForApplications(CreateDWSchema.java:92)
    com.siebel.etl.gui.configurator.CreateWSQLCommand.createDWSchema(CreateWSQLCommand.java:124)
    com.siebel.etl.gui.configurator.CreateWSQLCommand.execute(CreateWSQLCommand.java:61)
    com.siebel.etl.gui.configurator.StatusForm$TaskExecutor.runAllTasks(StatusForm.java:347)
    com.siebel.etl.gui.configurator.StatusForm$TaskExecutor.run(StatusForm.java:277)
    java.lang.Thread.run(Unknown Source)
    71 SEVERE Tue Feb 19 15:25:56 GMT 2013 java.lang.RuntimeException: Discrepencies have been found on some table column definitions!
    72 SEVERE Tue Feb 19 15:25:56 GMT 2013 java.lang.RuntimeException: Discrepencies have been found on some table column definitions!
    73 SEVERE Tue Feb 19 15:25:56 GMT 2013 FAILURE!
    ************

    Its a bug. References BUG:16231709 - OBIA7964:ERROR WHILE CREATING DATA WAREHOUSE TABLES USING DAC 11G
    So far the workaround is to use one Container Name at a time when creating the Warehouse.
    If helps mark and update back

  • Trying to create a fact table,error:unable to extend temp segement

    Using Oracle 10.2g
    SQL>
    create materialized view facts_table
    (     s_id
    ,     g_id
    ,     sb_id
    ,     sc_id
    ,     y_id)
    refresh with rowid
    as      select s.s_id
    ,     g.g_id
    ,     sb.sb_id
    ,     sc.sc_id
    ,     y.academicyear
    from      student s
    ,     grade g
    ,     subject sb
    ,     school sc
    ,     comqdhb.teachinggroup y;
    ERROR at line 3:
    ORA-01652: unable to extend temp segment by 1024 in tablespace POSTGRADSI am creating the fact table as materialized view because its specified for us.
    I am trying to create a fact table from the dimension tables and its giving this error
    what is the mistake kindly help.
    Also when creating the fact table do all the columns need to be foreign keys compulsorily.
    Edited by: Trooper on Jan 10, 2009 5:25 AM
    Edited by: Trooper on Jan 10, 2009 6:37 AM

    Well basically what your saying is absolutely right
    I realized what i am doing right now is stupendous blunder.
    Basically my aim is there are 5 dimensional tables that are created
    Student->s_id primary key,upn(unique pupil no),name
    Grade->g_id primary key,grade,exam_level,values
    Subject->sb_id primary key,subjectid,subname
    School->sc_id primary key,schoolno,school_name
    year->y_id primary key,year(like 2008)
    s_id,g_id,sb_id,sc_id,y_id are sequences
    select * from student;
    S_ID UPN FNAME COMMONNAME GENDER DOB
    ==============================
    9062 1027 MELISSA ANNE       f  13-OCT-81
    9000 rows selected
    select * from grade;
          G_ID GRADE      E_LEVEL         VALUE
            73 A          a                 120
            74 B          a                 100
            75 C          a                  80
            76 D          a                  60
            77 E          a                  40
            78 F          a                  20
            79 U          a                   0
            80 X          a                   0
    18 rows selectedThese are basically the dimensional views
    Now according to the specification given, need to create a fact table as facts_table which contains all the dim tables primary keys as foreign keys in it.
    The problem is when i say,I am going to consider a smaller example than the actual no of dimension tables 5 lets say there are 2 dim tables student,grade with s_id,g_id as p key.
    create materialized view facts_table(s_id,g_id)
    as
    select  s.s_id,g.g_id
    from   (select distinct s_id from student)s
    ,         (select distinct g_id from grade)gThis results in massive duplication as there is no join between the two tables.But basically there are no common things between the two tables to join,how to solve it?
    Consider it when i do it for 5 tables the amount of duplication being involved, thats why there is not enough tablespace.
    I was hoping if there is no other way then create a fact table with just one column initially
    create materialized view facts_table(s_id)
    as
    select s_id
    from student;then
    alter materialized view facts_table add column g_id number;Then populate this g_id column by fetching all the g_id values from the grade table using some sort of loop even though we should not use pl/sql i dont know if this works?
    Any suggestions.
    Edited by: Trooper on Jan 10, 2009 6:38 AM

  • Unable to create Indexes on F table

    Hi
    We are unable to create Indexes on one of our Cube's fact table...I tried creating with Process chain , Batch and also tried with SE11 ...table name ... Indexes ...Activate...
    Its showing active object generated but the warning msg Index does not exist in database system MSSQL still exist  and not creating indexes...When I activate the indexes its not showing this warning for all other cubes...Please advice
    regards

    Hi Sam,.
    The index creation on F table is taken care by the system itself. When you activate the cube, the DIM and F table are created and at the same time, indexes are created.
    To create your own indes, though, go to se11...>F Table name-->Indeexes-it will show you system created indexes.
    There will be a create sign....click there... and give the name of the index(like 1, 2). It will open up the maintain index page, where you have to mention all the parameter.
    Thanbks...
    Shambhu

  • UCM - Unable to create table 'WebdavUserPaths'.

    Hi,
    we have UCM Version:10.1.3.5.1 (091014) (Build:7.2.4.29). It runs on production environment and also we have a test instance.
    It runs fine for long time. Yesterday I stopped the content server on test environment. Problem is that I am not able to start it anymore. While starting I am receiving this error:
    Unable to create table 'WebdavUserPaths'. ORA-00955: name is already used by an existing object
    ORA-00955: name is already used by an existing object
    intradoc.common.ServiceException: !csDbUnableToPerformAction_create,WebdavUserPaths!$ORA-00955: name is already used by an existing object
    While analyzing this, I found there is the table WebdavUserPaths in the database and it is empty. This table is present in both databases - PROD and also in TEST. In both envs it is empty.
    I found out that when I disable CoreWebdav component in ComponentWizard, then the content server starts up fine, bud WebDav is not working of course...
    I would need to solve this issue, but I do not want to start immediately dropping that tables, etc... without knowing what is it used for, why content server wants to recreate the tables, etc...
    Any body has an ideas?
    Thanks.

    Thanks for pointing me towards dba_lobs
    SQL> select TABLE_NAME,INDEX_NAME from dba_lobs where OWNER='AEE' and index_name like 'LI_AURULD%';
    TABLE_NAME INDEX_NAME
    BIN$XdjCvAyQhMrgQBCsZat/dQ==$0 LI_AURULD_RULEDATA
    I purged the recyclebin and all was ok

Maybe you are looking for

  • How to print an int in binary form ?

    Say I have an int storing 5, can I print it out as 00000101 ? Thank you very much

  • Recursively Retrieving All the Files/Directories in a Directory

    Hello, I want to retrieve all files in a directory, and ran into this sample code: www.ni.com/example/27157/en/ This is the function that does the retrieve action:  GetFilesAndDirectories().  Its content is as follow: void GetFilesAndDirectories(char

  • How can I style individual levels of a list separately?

    Hi- I'm trying to define a list style in a slide master in Keynote 6.2.2 where each level is not only indented differently, but also formatted differently.  Like this: Level 1, 14pt bold Level 2, indented, 12pt regularLevel 3, indented again, 10pt it

  • Revalidation of the material testing

    Hi, For all the materials we have do the testing for regular interval (i.e - for some it may be 6 months and others may be 1 years) so once the period os the test certificate is over, we need to do the next time test. 1. where we can maintain this in

  • Possibility of using E1EDL18-QUALF: PID for DELVRY05

    Hi Experts, I'm trying to use an external number as the inbound delivery number when it is created in SAP via IDOC using basic type DELVRY05 with process code DELS. I'm looking at the possibility of using the QUALF field under segment E1EDL18 to have