Sqldeveloper data modeler -  DDL generatation

The generation use text with ^M for new lines.
I am running on windows.
The generation of DDL for a sequence :-
CREATE SEQUENCE SIDDWSLTOTOEVENT_TEAM_DT
There are ^M.
The blank line between the end of the DDL and its closing ';' causes it to be ignored in sqlplus.
Is there a switch that can change the newline usage xODxOA from^M?
These scripts may have to run on Unix or windows.

Generating the DDL with Include Comments selected generates empty lines before each CREATE table statement and just before the comment - even inside a statement. sqlplus does not like that.
checkbox Include Comments not selected:
ALTER TABLE SCAN_POLICY_REL
    ADD CONSTRAINT SCAN_POLICY_REL_PK PRIMARY KEY ( SCAN_ID, POLICYID ) ;
CREATE TABLE SCAN_RUN
     SCAN_RUN_ID NUMBER  NOT NULL ,
     START_TIME TIMESTAMP (0) ,
     END_TIME TIMESTAMP (0) ,
     SCAN_RUN_STATE CHAR DEFAULT 'N'  NOT NULL CHECK ( SCAN_RUN_STATE IN ('N', 'P', 'R', 'T')) ,
     SCAN_ID NUMBER  NOT NULL
;checkbox Include Comments selected (Observe: one line more before the CREATE, and one blank line before the comment)
ALTER TABLE SCAN_POLICY_REL
    ADD CONSTRAINT SCAN_POLICY_REL_PK PRIMARY KEY ( SCAN_ID, POLICYID ) ;
CREATE TABLE SCAN_RUN
     SCAN_RUN_ID NUMBER  NOT NULL ,
     START_TIME TIMESTAMP (0) ,
     END_TIME TIMESTAMP (0) ,
--  {New, Running, Paused, Terminated}
SCAN_RUN_STATE CHAR DEFAULT 'N'  NOT NULL CHECK ( SCAN_RUN_STATE IN ('N', 'P', 'R', 'T')) ,
     SCAN_ID NUMBER  NOT NULL
;

Similar Messages

  • SQLDeveloper Data Modeler corrupted -- No option to Open a Design

    After utilizing SQLDeveloper Data Modeler for about a day, the configuration appears to be corrupted in the following manner;
    Most of the tools and menus are either grayed out or have gone missing. For example, the File menu item no longer has an "Open" option. File menu present only the following selections:
    Save (gray / disabled)
    Save As (gray / disabled)
    Compare With (Submenu to select a file is gray/disabled)
    Exit (works!)
    This situation seems to have occurred after I have saved and committed designs to Subversion repository a few times. The logs are extensive with hundreds of errors complaining about
    2011-04-23 13:47:12,444 [Thread-1575] ERROR FileManager - getDataInputStream: Can not read data
    java.io.FileNotFoundException: C:\Documents and Settings\1063781\My Documents\PMSC\source\database\pirqry\design\types.xml (The system cannot find the file specified)
         at java.io.FileInputStream.open(Native Method)
         at java.io.FileInputStream.<init>(FileInputStream.java:106)
         at oracle.dbtools.crest.model.persistence.FileManager.getDataInputStream(Unknown Source)
         at oracle.dbtools.crest.model.persistence.FileManager.getDataInputStreamWithoutExtension(Unknown Source)
         at oracle.dbtools.crest.model.persistence.XMLPersistenceManager.getInputStreamFor(Unknown Source)
         at oracle.dbtools.crest.model.persistence.xml.AbstractXMLReader.getInputStreamFor(Unknown Source)
         at oracle.dbtools.crest.model.persistence.xml.AbstractXMLReader.recreateObject(Unknown Source)
         at oracle.dbtools.crest.model.persistence.XMLPersistenceManager.readSystemInit(Unknown Source)
         at oracle.dbtools.crest.model.design.DesignSet.createElement(Unknown Source)
         at oracle.dbtools.crest.swingui.ApplicationView.addDesign(Unknown Source)
         at oracle.dbtools.crest.swingui.ControllerApplication$Recent$1.run(Unknown Source)
    2011-04-23 13:47:12,444 [Thread-1575] ERROR AbstractXMLReader - Data inputstream is null (path: types name: types)
    2011-04-23 13:48:21,751 [AWT-EventQueue-0] ERROR FileManager - getDataInputStream: Can not read data
    java.io.FileNotFoundException: C:\Documents and Settings\1063781\My Documents\PMSC\source\database\pirqry\design\types.xml (The system cannot find the file specified)
    The only file similar in nature is "DataTypes.xml". That being said, a logoff/on and/or a restart does not clear the issue, and I'm continuing to look around before a reinstall ODM again ( this will be the 3rd time -- perhaps a charm :-) )
    An additional curiosity -- Now when trying to use the Tools | Preferences, any of the Data Modeler preferences cause the preference values portion of the page to become unresponsive. If clicking on any Data Modeler preference, the righthand portion of the preferences dialog does not change. I can however navigate to other preferences and the dialog responds as expected.
    Has ODM become corrupted in some recoverable manner?
    Has anyone experience this situation before? Thanks.
    Edited by: Solidus on Apr 23, 2011 2:55 PM

    I've had this problem too (& don't use Subversion), but couldn't find the Oracle SQL Developer Data Modeler folder in Application Data.
    However, I'd set the IDE_USER_DIR environment variable - so look in that directory & delete the system<version-number> folder & that clears the problem too.
    Mary

  • SQL Dev Data Modeller:  Auto-generate Surrogate PKs in the Physical Model ?

    How can I have the logical modeller allow the user to design with logical PKs, but then have surrogate primary keys be auto-generated off sequences by the modeller when it comes to create the physical model - as in conventional application design?
    Without this facility, this tool is useless, IMO.
    I want:
    i). sequences to become the physical PKs by default, and that what were the logical PKs in the logical model, to become a unique key in the physical model.
    ii). I want this set by default when generating the physical model....
    iii). ....with an option to turn this off on a entity-by-entity basis (as not all tables will necessarily require such a surrogate PK; so the logical PK may remain the physical PK).

    It is common practice that physical PKs in Oracle tables are defined from sequences (surrogate PKs), and that the logical PK from the entity becomes a unique key in the table.
    This may not always be the case in every application out there, and some people may disagree, but it is nonetheless a needed feature.
    My new Feature Request is therefore:
    I would like to see the following additions to the product.
    1. In the Preferences -> Data Modeler -> Model -> Logical, a flag that by default indicates whether the designer wishes to opt to enable this feature (ie; have all logical PKs converted to unique keys, and replaced by sequence nos. in the physical model). This flags needs to be there since in real life, albeit erroneously IMO, some people will choose not to opt to use this functionality.
    2. On every entity created in the model, there needs to be a flag that allows to override this default option, as not every table will require a surrogate PK to be generated. Being able to (re)set a flag located on the entity properties (perhaps under 'Engineer To'), will accomplish this.
    3. When Forward Engineering to the physical model from the logical, the following should happen.
    ENTITY  1 ---------->TABLE 1
    ---------------------> P * Surrogate PK
    * Attribute 1 -----> U * Column 1
    * Attribute 2 -----> U * Column 2
    o Attribute 3 ----------> Column 3
    Here you can see,
    - Attributes 1 & 2 (the logical PK) of the entity become a unique key in the table (columns 1 & 2),
    - optional Attribute 3 becomes NULLable column 3,
    - and a physical surrogate PK column is added (type unbounded INTEGER, PRIMARY KEY constraint added).
    From entity DEPT as:   (Examples based on SCOTT schema)
    DEPTNO NUMBER(2) NOT NULL <-- Logical primary key on entity
    DNAME VARCHAR2(14)
    LOC VARCHAR2(13)
    CREATE TABLE DEPT
    (PK_DEPT INTEGER, -- New column becomes surrogate physical PK, driven from sequence defined later
    DEPTNO NUMBER(2) NOT NULL, -- Former logical PK becomes a UK
    DNAME VARCHAR2(14),
    LOC VARCHAR2(13))
    ALTER TABLE DEPT
    ADD CONSTRAINT PK_DEPT PRIMARY KEY (PK_DEPT) USING INDEX PCTFREE 0
    ALTER TABLE DEPT
    ADD CONSTRAINT UKLPK_DEPTNO UNIQUE (DEPTNO) USING INDEX PCTFREE 0 -- Former logical PK becomes a UK (constraint name reflects this)
    CREATE SEQUENCE PK_DEPT_SEQ
    CREATE TRIGGER PK_DEPT_SEQ_TRG
    BEFORE INSERT ON DEPT
    FOR EACH ROW
    WHEN (new.PK_DEPT IS NULL)
    BEGIN
    SELECT PK_DEPT_SEQ.NEXTVAL
    INTO :new.PK_DEPT
    FROM DUAL;
    -- Or from 11g onwards, simply,
    :new.PK_DEPT := PK_DEPT_SEQ.NEXTVAL;
    END;
    From entity EMP as:
    EMPNO NUMBER(4) NOT NULL -- Logical primary key on entity
    ENAME VARCHAR2(10)
    JOB VARCHAR2(9)
    MGR NUMBER(4)
    HIREDATE DATE
    SAL NUMBER(7,2)
    COMM NUMBER(7,2)
    DEPTNO NUMBER(2)
    CREATE TABLE EMP
    (PK_EMP INTEGER, -- New column becomes surrogate physical PK, driven from sequence defined later
    FK_DEPT INTEGER, -- New FK to surrogate PK in DEPT table (maybe NOT NULL depending on relationship with parent)
    EMPNO NUMBER(4) NOT NULL, -- Former logical PK becomes a UK
    ENAME VARCHAR2(10),
    JOB VARCHAR2(9),
    MGR NUMBER(4),
    HIREDATE DATE,
    SAL NUMBER(7,2),
    COMM NUMBER(7,2),
    DEPTNO NUMBER(2))
    ALTER TABLE EMP
    ADD CONSTRAINT PK_EMP PRIMARY KEY (PK_EMP) USING INDEX PCTFREE 0
    ALTER TABLE EMP
    ADD CONSTRAINT FK_DEPT FOREIGN KEY (FK_DEPT) REFERENCES DEPT (PK_DEPT)
    ALTER TABLE EMP
    ADD CONSTRAINT UKLPK_EMPNO UNIQUE (EMPNO) USING INDEX PCTFREE 0 -- Former logical PK becomes a UK (constraint name reflects this)
    CREATE SEQUENCE PK_EMP_SEQ
    CREATE TRIGGER PK_EMP_SEQ_TRG
    BEFORE INSERT ON EMP
    FOR EACH ROW
    WHEN (new.PK_EMP IS NULL)
    BEGIN
    SELECT PK_EMP_SEQ.NEXTVAL
    INTO :new.PK_EMP
    FROM DUAL;
    -- Or from 11g onwards, simply,
    :new.PK_EMP := PK_EMP_SEQ.NEXTVAL;
    END;
    [NOTE:   I use PCTFREE 0 to define the index attributes for the primary & unique keys since the assumption is that they will in general not get updated, thereby allowing for the denser packing of entries in the indexes and the (albeit minor) advantages that go with it.
    This is certainly always true of a sequence-driven primary key (as it is by its very nature immutable), but if the unique key is likely to be frequently updated, then this PCTFREE option could be user-configurable on a per table basis (perhaps under Table Properties -> unique Constraints).
    For non-sequence-driven primary keys, this storage option could also appear under Table Properties -> Primary Key.
    I notice no storage options exist in general for objects, so you may like to consider adding this functionality overall].
    Associated Issues :
    - Preferences, 'Naming Standard: Templates' should be updated to allow for the unique key/constraint to be called something different, thus highlighting that it comes from the logical PK. I've used 'UKLPK' in this example.
    - Mark the physical PK as being generated from a sequence; perhaps a flag under Table Properties -> Primary Key.
    - When Forward Engineering, if an entity exists without a logical PK, the forward engineering process should halt with a fatal error.
    !!! MODERATOR PLEASE DELETE ME !!!

  • Data Modeller DML Generator messed up

    Hi.
    I've been workling with Oracle Data Modelle5r 3.0.0.665 and I found that the DML Generator adds objects that have not been requested to generate as well as omits objects that are requiere to generate. The DML in the Physical Model Generator and the DML Generator in the Relational Model are inconsisten between each other.
    Are these reported bugs?
    Thanks

    Much lighter.
    The capture design captures very quickly in comparison.
    Data Modeler does cubes where Designer does not.
    Designer does API generate where Data Modeler does not.
    so there are some trade off's. However Designer will be desupported at the end of this year.

  • Generate ER Diagram from Sql Data Modeler

    Hi,
    I want to use the Oracle Sql Developer Data Modeler to generate ER diagram for my schema. There are huge number of tables in this schema, so I would like to identify only those tables which need to be selected for generating my ER diagram.
    Basically, I want only those table which are having relationship with other tables here. The reason being, if I select all tables in the schema then I would get those tables in the ER diagram which don't have any relationship with other tables.
    Can someone please suggest writing queries which yield this from data dictionary?
    Thanks.

    Well, your requirement is based on the the database schemas having been designed with proper primary key and foreign key constraints in place.  If they're not there then the database doesn't know about the relationships between tables, and such relationships are just theoretical (and as such usually controlled by the application that uses them).
    Of course there are also tables that are used by applications for lookups and other reasons, so they're part of the application and should be included on ER diagrams, even if they have no direct relationship to any one table (or they could have relationships to many tables).
    So, rather than try and write queries to figure out what tables are required, why not let the Data Modeller tool generate an ER diagram from the information that IS known about on the database, and then you can see if the relationships exist, or if they're missing and need manually putting on the diagram (or applying to the database).

  • SQL Developer - Data Modeler - Trigger for FK arc constraints

    In the preferences there is an option "Data Modeler > DDL > Create Triggers for FK arc constraints". I think Oracle recomments to use constraints instead of triggers where it is possible. Can anyone from the Development team tell me why here is just the option to create triggers and not also the option to create table level constraints for FK arc constraints? If it is possible I'd like to have this option. My suggetion is to use the following check constraint construction for creation: nvl2(FK_IDx,1,0)+nvl2(FK_IDy,1,0)+...+nvl2(FK_IDz,1,0)=1 or with not only single FK columns: nvl2(FK_IDx1,1,0)+nvl2(FK_IDx2,1,0)+nvl2(FK_IDy,2,0)+...+nvl2(FK_IDz,2,0)=2. Please tell me if that would be possible (and maybe available in next Version) or why it is better to user triggers instead.
    Thanks
    /c

    The Data Modeler forum is at:
    SQL Developer Data Modeler

  • SQL Data Modeler 3.0 EA1 trying to create primary key on OT

    Hi,
    I'm trying to modify a primary key of an object table that was reversed (imported) from an Oracle 11.2.x RDBMS and am getting the error message "Incomplete Index definition". It is showing in the window "Index Columns Assignment". I get to the 'Primary Key Properties' window by pressing the 'Properties' button on the 'Table Properties' -> 'Primary Key'. If I try to edit the expression and then press the Ok or Apply buttons I get the error. With this be fixed in the production version? Will we be able to create a model in SQL Developer Data Modeler that generates a SQL statement similar to the following:
    ALTER TABLE x_flags
    ADD (CONSTRAINT x_flags_pk PRIMARY KEY (flags.id))
    Thanks,
    Scott K

    Hi Scott,
    I'm trying to modify a primary key of an object table that was reversed (imported) from an Oracle 11.2.x RDBMS and am getting the error message "Incomplete Index definition"... With this be fixed in the production version?yes
    Will we be able to create a model in SQL Developer Data Modeler that generates a SQL statement similar to the following:
    ALTER TABLE x_flags
    ADD (CONSTRAINT x_flags_pk PRIMARY KEY (flags.id))I assume "flags" is column of object type and "id" is attribute of that type. I logged bug for that, so there will be support however not for 3.0.
    Philip

  • Data Model Extension

    Hi Techies,
    Could you please look at the below scenario and provide your valuable inputs.
    Scenario: I am trying to load the Cost Centers from ECC to MDG via MDMGX t code. The CR is not being created and data is not being loaded to the MDG Cost center tables and it shows the error message (Message type MDG_COST_CENTERS: error in XML transformation) from the logs.
    Root cause identified:  The issue was coming because of ZZWERKS field in extracted file from CSKS table. Import program is not able to map this
    field since it doesn’t exist in MDG data model.
    Confirmation: Tried loading a single cost center without having ZZWERKS field from XML and the data got loaded to MDG tables via MDMGX
    olution: Extended the data 0G with a new field ZZ_PLANT and activated the data model. Generated the respective structures for Cost centers.
    Issue: EVenthough extended the data model, when I try to laod the CC data, It shows the same error message as 'Error in XML Transformation' but this time the CR gets created and a very minimal amount of data(not all the data from ECC) is being loaded to MDG tables.
    And also im checking to map the new fields using SMT Tool, I couldnt create the mapping between source and target structures. Because, the target structure doesnt show this newly added ZZWERKS field to map with. where as the extended field zz_plant in 0G model could be seen in the source structures.
    Could you please help if I am missing any thing here
    Thanks,
    Anusha

    Hi Shankar,
    Thanks for your response.
    In my scenario, my target structure is MDGF_COST_CTR_RPLCTN_REQ_COST. In Ecc, already the the fields ZZWERKS  is added. So, the target structure wouldnt be inheriting the ECC structure while mappping. Do we have to add it separately. This target structure has Proxy generated internal structures for the Cost center data. Could you please check and advise.
    Thanks,
    Anusha

  • How to install Data Modeler

    Hi,
    I downloaded Sqldeveloper data Modeler for Windows 32 bit including JRE. The data modeler has to run on windows 7 64 Bit as well as the sql developer runs
    After unzipping this file I tried to start the datamodeler. When I starter the 32 Bit version I got the error:
    Cannot be startet becaus MSVCR71.dll is not on the computer.
    When I tried to start the 64 Bit version I got the error
    Unable to launch the Java Virtual Machine located at path ..\..\jdk\jre\bin\client\jvm.dll
    What must I do to install the datamodeler?
    Please help me.
    Regards
    Siegwin

    Hi Siegwin,
    The download including JRE only includes a 32 bit JRE.
    This jre includes a copy of file msvcr71.dll (in folder datamodeler\jdk\jre\bin). However it seems that in some circumstances the system does not find this file.
    There have been several message threads about this, both for SQL Developer and for Data Modeler.
    For example, from https://forums.oracle.com/forums/thread.jspa?messageID=10624958 it appears that copying msvcr71.dll to the Windows\System32 folder may solve the problem,
    or starting Data Modeler using the datamodeler.exe file in folder datamodeler/datamodeler/bin may help. (This brings up an additional command prompt window.)
    Message Re: Oracle Data Modeler Installation guide may also be relevant.
    To run Data Modeler in 64 bit mode, you will need to provide your own 64 bit JRE.
    If you edit the file datamodeler64.conf (in folder datamodeler\datamodeler\bin) and remove the line starting with "Set JavaHome", next time you attempt to start 64-bit Data Modeler it should ask you for the location of the java.exe file in your 64 bit JRE.
    There is now a forum specifically for Data Modeler issues: SQL Developer Data Modeler
    David

  • Import of DDL with data modeler

    Hello,
    I begin to use the data modeler of sql developer. I create un relational model with constraints about range and values list. Then I generate the corresponding DDL :
    -- Generated by Oracle SQL Developer Data Modeler Version: 2.0.0 Build: 584
    -- at: 2010-03-08 19:26:07
    -- site: Oracle Database 10g
    -- type: Oracle Database 10g
    CREATE TABLE ACTLIST
    TIME_ACT INTEGER NOT NULL ,
    NON_CTL_AREA_NAME VARCHAR2 (12) NOT NULL ,
    AIRSPACE_ENV_NAME VARCHAR2 (20) NOT NULL
    ) LOGGING
    ALTER TABLE ACTLIST
    ADD CONSTRAINT TIME_ACT_CHCK
    CHECK ( TIME_ACT BETWEEN 1 AND 2000)
    CREATE TABLE AIRCR_MO
    AIRCRAFT_NAME VARCHAR2 (4) NOT NULL ,
    WAKE_TURBULENCE_CAT VARCHAR2 (1) NOT NULL ,
    TAS INTEGER NOT NULL
    ) LOGGING
    ALTER TABLE AIRCR_MO
    ADD CONSTRAINT WAKE_TURBULENCE_CAT_CHCK
    CHECK ( DESCRIPTION IN ( 'L', 'M', 'H' ))
    ALTER TABLE AIRCR_MO
    ADD CONSTRAINT TAS_CHCK
    CHECK ( TAS BETWEEN 0 AND 999)
    Now, I import this DDL and constraints about range and values list are lost. Is it normal ? How Can I do to preserve these data ? Domains on each columns are effectively created but raneg and values list are empty !
    Thank you

    Hello,
    these definitions are generated as check constraint:
    ALTER TABLE AIRCR_MO
    ADD CONSTRAINT WAKE_TURBULENCE_CAT_CHCK
    CHECK ( DESCRIPTION IN ( 'L', 'M', 'H' )) and they are imported as check constraint in current implementation. We have ER logged for that - to import them as list of ranges or/and list of values.
    Philip

  • Generation of DDL similar to Oracle Designer (Data Modeler 3.0 EA1.)

    Hi,
    Will the production version of SQL Data Modeler allow the creation of separate DDL files similar to that which Oracle Designer does? For example, I can create a sequence number generator in Data Modeler (DM) and then make a call to that in an Object Type method. However the DDL file that is generated by DM has all DDL in one file. This would allow to take dependencies were taken into consideration, that is create the sequences before object types, packages and tables, then object type bodies, package bodies, etc...
    Thanks,
    ScottK

    At this stage we do not support multiple files. We do plan to do this in the future. However you can work around this by repeating the DDL generation for the different objects types you want to have files for.
    Remember that you can vote on the Exchange for your most desired features.
    Sue

  • Data Modeler: Problems with importin from DDL and Designer

    I have a few problems with importing models from Designer and DDL:
    1. Can I import spatial indexes from Designer or DDL file? An index does appear in the model but it doesn’t seem to be a spatial index. When trying to import from database, the index doesn’t appear in the model at all.
    2. Is it possible to import sdo_geometry data types from DDL file? I haven’t succeeded with it, instead the column's data type appears unknown.
    3. Sometimes import from DDL files (that are generated with DM) failed with nothing appearing to the model. I haven’t figured out why that happens. I didn’t receive any error message, the model just opened empty.
    4. DM doesn’t seem to recognize public synonym creation from DDL. View log gives the following message:
    <<<<< Not Recognized >>>>>
    CREATE PUBLIC SYNONYM TABLE1
    FOR TABLE1
    5. Sequences lose their properties when importing from Designer. They only have a name but but start with, increment by and min/max values are empty in DM. Importin from DDL works fine.
    I’m using data modeler version 2.0.0 build 584

    Hi Alex,
    There is newer version of Data Modeler (3.0 EA2) and it is free
    You can download it from here
    http://www.oracle.com/technetwork/developer-tools/datamodeler/ea2-downloads-185792.html
    Regards
    Edited by: Dimitar Slavov on Dec 9, 2010 2:15 AM

  • Data Modeler - Compare Models and DDL file

    I have been generating DDL files by data dictionary import. In the Compare Models window, the orange triangles with exclamation marks show the tables that are somehow different in database and in my data model.
    That would be very helpful feature, if it didn't notice the kind of information that never goes to database. For example I have used the Notes-field and Table Types and the compare functionality shows that those information are missing in database. In other words, it shows the exclamation marks in every table even if I had changed one table in my model.
    Is there some reason for it to work like this? Or is this going to be fixed in the future?

    Ok, that's good to hear!
    Now I have another thing about DDL that I noticed. I have a sequence in my database that has cache size of 20. I removed the cache size from Data Modeler and made the DDL file with import from data dictionary. The DDL file was empty, so Data Modeler didn't notice that the sequence had changed.

  • [Data Modeler] FK aren't generated

    Hello !
    When I export my model to DDL PK and Unique constraint are exported correctly, but Data Modeler generate only indexes on FK and don't generate FK constraints itself.
    But i've the last version of Oracle SQL Data Modeler, i'v checked the checkbox to generate FK, and I can't get theses constraints in DDL export.
    Have you an idea for solving this problem ?
    Benjamin Regnier

    In the Preferences there is an option to to not create indexes on FK.

  • BIP Trial 11.1.1..6: Error while generating XML data in Data Model

    Hello,
    I have created a Data Model with a single query. After saving the DM and clicking on the XML icon to generate sample data, I get the following error:
    The XML page cannot be displayed
    Cannot view XML input using XSL style sheet. Please correct the error and then click the Refresh button, or try again later.
    End tag 'span' does not match the start tag 'img'. Error processing resource 'http://localhost:7001/xmlpserver/servlet/xdo'...
    *<table style='background=color: #d9e5ef; margin-top: 10px;' width='100%' cellspacing='0' cellpadding='0' border='0' summa...*
    I have verified that the SQL runs without errors in SQL Developer using the same connection parameters as whats used in the DM.
    There are no html tags/key-words etc being used in the sql our it's output.
    Is there a a way to debug this? This is extremely frustrating. Especially since the same sql works without any issues in Oracle Reports.
    Thanks,
    Manish

    ya i can understand we wont do the sql logic at the data model part as some time performance issue may come when comparaed to sql run in package and sql running in data model . so i have mostly done using package and i will just do select * from table in the data set of data model so i didn't face any issue's like this .
    once check this tutorial may be you already
    i use to create parameters like this i didn't face any issue
    SELECT * from TEST where ID=:p_id
    http://st-curriculum.oracle.com/obe/fmw/bi/bip/bip11g/gettingstarted/gettingstarted.htm

Maybe you are looking for

  • Problem while loading Master data load

    Hi, i am loading master data for 0PROJECT. for attributes and text we do have delta. for text after load added records will be 0 eventhough few records there and they are transferred records. i checked in RSA3 it has records. can any body tell me the

  • [SOLVED]nm-applet taking too much memory (sometimes all the processes)

    Hello, One of the reason i chose Archlinux (archbang) was to keep the system small to fit in my little 512MB of ram and i've been happy so far but for some reason i noticed that nm-applet is now taking a *lot* of memory, around 40mb while it didn't u

  • Quick Time 7.3

    Its probably been asked before but ever since Upgrading to leopard whenever i go onto Facebook all the video applications sent, just come up with a question mark over the QT symbol, i've got Flip4 mac 2, is there another add on i,m missing? please ad

  • Hyperlinks text to file?Help needed

    hi guys,i need some help in Abode Flash Professional CS 5.5 . im new to Flash,need some serious help over here =( deadline is tomorrow >< Here's the Senario :   -im editing a flash website,and i need to do some hyperlink to the text.but instad of hyp

  • After backing up you have to re-enter all the serials -Is that possible?

    After an hard disk crash I restore my operating system with a backup from Time Capsule: everything good except I had to re-enter all the serial of my applications and the Corel Painter X won't start up: a message tells me to reinstall it from my orig