Defining 100 columns from single column

hi all,
i need to write an sp which returns many columns
i have code ,name,candidates,mark(0-100)
these are my columns in a table..
now i need to calculate columns 0-100 which mark having how many students..like
code name     [ MARKS- 1]                        [MARK- 2]       [
3]        [ 4]      [5 ]  -----------[100]
01   eng          10CANDIDATES                    2                
10          64         44--------------98
02   BEG          12CANDIDATES                   0                 
12          77         98                  21
FOR THIS I WROTE CODE LIKE
SELECT Name,Code,Mark,CANDIDATES
INTO #tmp
FROM TABLENAME
WHERE (CONDITION)
SELECT
Name,Code
,[1] = SUM(CASE WHEN Mark=1 THEN Nos ELSE 0 END)
,[2] = SUM(CASE WHEN Mark=2 THEN Nos ELSE 0 END)
,[3] = SUM(CASE WHEN Mark=3 THEN Nos ELSE 0 END)
,[4] = SUM(CASE WHEN Mark=4 THEN Nos ELSE 0 END)
,[5]= SUM(CASE WHEN Mark=5 THEN Nos ELSE 0 END)
,[6] = SUM(CASE WHEN Mark=6THEN Nos ELSE 0 END)
,[7] = SUM(CASE WHEN Mark=7 THEN Nos ELSE 0 END)
,[8]= SUM(CASE WHEN Mark=8 THEN Nos ELSE 0 END)
,[9]= SUM(CASE WHEN Mark=9 THEN Nos ELSE 0 END)
,[10]= SUM(CASE WHEN Mark=10 THEN Nos ELSE 0 END)
---SO ON UPTO 100---------------------------------------------
FROM #tmp
GROUP BY Name,Code
NOW ITS too big code to define upto 100, so how caan i define in easiest way like any loop way? and simple code..pls help
thanks in advance..
lucky

hi all,
i need to write an sp which returns many columns
i have code ,name,candidates,mark(0-100)
these are my columns in a table..
now i need to calculate columns 0-100 which mark having how many students..like
code name     [ MARKS- 1]                        [MARK- 2]       [
3]        [ 4]      [5 ]  -----------[100]
01   eng          10CANDIDATES                    2                
10          64         44--------------98
02   BEG          12CANDIDATES                   0                 
12          77         98                  21
FOR THIS I WROTE CODE LIKE
SELECT Name,Code,Mark,CANDIDATES
INTO #tmp
FROM TABLENAME
WHERE (CONDITION)
SELECT
Name,Code
,[1] = SUM(CASE WHEN Mark=1 THEN Nos ELSE 0 END)
,[2] = SUM(CASE WHEN Mark=2 THEN Nos ELSE 0 END)
,[3] = SUM(CASE WHEN Mark=3 THEN Nos ELSE 0 END)
,[4] = SUM(CASE WHEN Mark=4 THEN Nos ELSE 0 END)
,[5]= SUM(CASE WHEN Mark=5 THEN Nos ELSE 0 END)
,[6] = SUM(CASE WHEN Mark=6THEN Nos ELSE 0 END)
,[7] = SUM(CASE WHEN Mark=7 THEN Nos ELSE 0 END)
,[8]= SUM(CASE WHEN Mark=8 THEN Nos ELSE 0 END)
,[9]= SUM(CASE WHEN Mark=9 THEN Nos ELSE 0 END)
,[10]= SUM(CASE WHEN Mark=10 THEN Nos ELSE 0 END)
---SO ON UPTO 100---------------------------------------------
FROM #tmp
GROUP BY Name,Code
NOW ITS too big code to define upto 100, so how caan i define in easiest way like any loop way? and simple code..pls help
thanks in advance..
lucky
Please post the create table script and sample data.
- please mark correct answers

Similar Messages

  • Interactive report: Can I exclude a particular column from single row view?

    Hi -- I posted on this yesterday (Possible to exclude interactive report column from single row display?
    a bit anxious for suggestions, I guess!
    I've added a column with edit-link functionality to my interactive report query (that is, the link
    is not attached to the database data... it's an additional column and shows an icon). It's also
    in addition to the default single row view link. (We need both.)
    Unfortunately, the Edit link column shows up in the single row view. I've pared it down as much
    as I can: the label is empty, and the null value shows as "-". But an extra row with "-" is pretty
    ugly. Is there a way to always, completely exclude this column from the single row view?
    I know I could put the edit link on a data column, but:
    1) I want the link to always be to the left of the data (and the user can re-order columns)
    2) when the user doesn't have edit privileges, the link will need to be disabled or just not
    be displayed, and I think that would be a problem if the link were on the data. (true?)
    Thanks,
    Carol

    Please disregard this thread, and the one it refers back to. I see a flaw in the design of what I was attempting to do! Creating the link for Editing as a column means the user could inadvertently not display it, or move it, or... any number of problematic scenarios.
    Thanks,
    Carol

  • Is there a 100 column report limit and/or a problem editing dynamic reports

    APEX Gurus
    I have a report which is generated dynamically, the source being a PL/SQL function body returning SQL query. The on-screen output is generated using mod plsql, i.e. an html table.
    If I run the report with parameters which return more than 100 columns, all are displayed on screen
    However, if I click on the (standard functionality) 'export to csv' link at the bottom of the report, not all of the columns are exported.
    If I navigate to the report definition page, firstly a pop-up error appears: "A Runtime Error has occurred. Do you wish to debug? Line 272 Error: ';' Expected". If I click 'no' then the report definition appears. There are 100 columns listed 'Col01', 'Col02', 'Col03' ... 'Col100'.
    I can't edit anything on the page without getting an error when I apply changes:-
    ORA-20505: Error in DML: p_rowid=107779820132310508, p_alt_rowid=ID, p_rowid2=79506526374684203, p_alt_rowid2=SECURITY_GROUP_ID. ORA-20503: Current version of data in database has changed since user initiated update process. current checksum = "E8F1BCECF94FAD8DF3ECC3E74BCC4D50" application checksum = "0"
    ORA-20505: Error in DML: p_rowid=107779820132310508, p_alt_rowid=ID, p_rowid2=79506526374684203, p_alt_rowid2=SECURITY_GROUP_ID. ORA-20503: Current version of data in database has changed since user initiated update process. current checksum = "E8F1BCECF94FAD8DF3ECC3E74BCC4D50" application checksum = "0"
    The only option is a hyperlink to go back: 'Return to application'. No changes are saved.
    I am wondering if I am hitting 2 problems:-
    1. APEX can't handle more than 100 columns
    2. APEX can't handle editing of the page once it has been created?
    Does anyone have any good ideas/seen this before?
    Could it be related to this Is it a bug (Form with more than 100 items/columns) ?
    Is this a bug or an undocumented feature?
    All help appreciated.
    Ian

    I created a report with the following query
    SELECT 1,2,3,4,5,6,7,8,9,10,
           11,12,13,14,15,16,17,18,19,20,
           21,22,23,24,25,26,27,28,29,30,
           31,32,33,34,35,36,37,38,39,40,
           41,42,43,44,45,46,47,48,49,50,
           51,52,53,54,55,56,57,58,59,60,
           61,62,63,64,65,66,67,68,69,70,
           71,72,73,74,75,76,77,78,79,80,
           81,82,83,84,85,86,87,88,89,90,
           91,92,93,94,95,96,97,98,99,100
    FROM DUAL
    {code}
    It created a 100 column report and I was able to manipulate the report the same as any other. So maybe it is not the fact that there are 100 columns. I know its not an answer to your question but maybe it can help.
    Tyson Jouglet
    Edited by: Tyson Jouglet on Oct 13, 2008 8:51 AM                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       

  • How to avoid the hard limit of 100 column and items per page?

    I have created a Form on a Table with Report. I need to create/edit approximately 175 items. The items on the Form have a limit of 100 column and items per page. What is the best way to carry the remaining items to another Form and doing an insert or update? or is the 100 column limit on the insert/update per table as well?
    Thank You.

    Hi Rick,
    The 100 item limit is on a page, not a table, so you shouldn't have any trouble with your insert or update processes.
    Here's a thought:
    Report currently has a column that links to the first page of items (page 14) with the retrieved row. Presumably you also have a Add New button on the report page that links to page 14 for a new row.
    Define a Next button on page 14 that branches to the second page of items (page 16). Also define a Previous button on page 16 to return to page 14. But page 16 would be the only page with a Save button.
    Now, if user clicks Add New, user will get a blank page 14. Once user enters the info and passes validation they click Next and will be sent to page 16 to enter the remaining info and Save.
    If user clicks one of the column links, they will be brought to page 14 with the clicked row - they can change whatever info there and click Next, or just click Next, to get to page 16. After any changes are made, they click Save.
    I'm assuming you've been thru the tutorials and realize that you'd really have two Save buttons defined for page 16 - one conditional on your primary key item having a value (existing record) and one conditional on it being null (new record) - check out the tutorials for more info, but this is how the application would know whether to run an insert process or an update process.
    Hope this all makes sense and can help,
    John

  • How to audit the table when updated. The table has 100 Columns.

    Hi,
    I have a requirement to keep the log information of a table whenever there is an update happening on any of the columns available in a table, which has roughly 100 columns. I know we can use :NEW and :OLD specifier using trigger, but the no of columns are 100 + , here shall we fulfill the requirement. Kindly suggest if you have any better way to handle it.
    Regards
    Suresh

    You can use XMLTYPE for this. See an example below:
    First creating some test data:
    SQL> create table test_06302011
      2  (
      3    a1 number(10)
      4  , a2 number(10)
      5  , a3 number(10)
      6  , a4 number(10)
      7  , a5 number(10)
      8  , a6 number(10)
      9  )
    10  /
    Table created.
    SQL> insert into test_06302011
      2  values(1,1,1,1,1,1)
      3  /
    1 row created.
    SQL> insert into test_06302011
      2  values(2,2,2,2,2,2)
      3  /
    1 row created.
    SQL> insert into test_06302011
      2  values(3,3,3,3,3,3)
      3  /
    1 row created.
    SQL> insert into test_06302011
      2  values(4,4,4,4,4,4)
      3  /
    1 row created.
    SQL> insert into test_06302011
      2  values(5,5,5,5,5,5)
      3  /
    1 row created.
    SQL> insert into test_06302011
      2  values(6,6,6,6,6,6)
      3  /
    1 row created.
    SQL> commit
      2  /
    Commit complete.
    SQL> create table log_06302011
      2  (
      3    log_id     number(10) primary key
      4  , log_date   date
      5  , log_action varchar2(1)
      6  , log_old    xmltype
      7  , log_new    xmltype
      8  )
      9  /
    Table created.Then creating the logging trigger:
    SQL> CREATE OR REPLACE TRIGGER trigger_log_06302011
      2     AFTER UPDATE OR INSERT OR DELETE ON test_06302011
      3     FOR EACH ROW
      4  DECLARE
      5      vlog_event VARCHAR2(1);
      6      v_log_new  XMLTYPE;
      7      v_log_old  XMLTYPE;
      8  BEGIN
      9
    10    IF INSERTING THEN
    11        vlog_event := 'I';
    12        select XMLELEMENT("test_06302011",
    13                        XMLFOREST(
    14                            :new.a1 as "a1"
    15                          , :new.a2 as "a2"
    16                          , :new.a3 as "a3"
    17                          , :new.a4 as "a4"
    18                          , :new.a5 as "a5"
    19                          , :new.a6 as "a6")
    20                   )
    21           into v_log_new
    22           from dual;
    23
    24         v_log_old := NULL;
    25
    26    END IF;
    27
    28    IF UPDATING THEN
    29        vlog_event := 'U';
    30        select XMLELEMENT("test_06302011",
    31                        XMLFOREST(
    32                            :new.a1 as "a1"
    33                          , :new.a2 as "a2"
    34                          , :new.a3 as "a3"
    35                          , :new.a4 as "a4"
    36                          , :new.a5 as "a5"
    37                          , :new.a6 as "a6")
    38                   )
    39           into v_log_new
    40           from dual;
    41
    42         select XMLELEMENT("test_06302011",
    43                        XMLFOREST(
    44                                                           :old.a1 as "a1"
    45                                                         , :old.a2 as "a2"
    46                                                         , :old.a3 as "a3"
    47                                                         , :old.a4 as "a4"
    48                                                         , :old.a5 as "a5"
    49                                                         , :old.a6 as "a6")
    50                   )
    51          into v_log_old
    52          from dual;
    53
    54    END IF;
    55
    56    IF DELETING THEN
    57        vlog_event := 'D';
    58        v_log_new := NULL;
    59
    60         select XMLELEMENT("test_06302011",
    61                        XMLFOREST(
    62                                                           :old.a1 as "a1"
    63                                                         , :old.a2 as "a2"
    64                                                         , :old.a3 as "a3"
    65                                                         , :old.a4 as "a4"
    66                                                         , :old.a5 as "a5"
    67                                                         , :old.a6 as "a6")
    68                   )
    69          into v_log_old
    70          from dual;
    71
    72    END IF;
    73
    74     INSERT INTO log_06302011 (log_id, log_date, log_action, log_old, log_new
    75     VALUES ((SELECT NVL(MAX(log_06302011.log_id), 0) + 1 FROM log_06302011)
    76          , SYSDATE
    77          , vlog_event
    78          , v_log_old
    79          , v_log_new
    80           );
    81
    82  END trigger_log_06302011;
    83  /
    Trigger created.Now test:
    SQL> update test_06302011
      2     set a2 = 99
      3   where a1 = 1
      4  /
    1 row updated.
    SQL> commit
      2  /
    Commit complete.
    SQL> column log_old format a30
    SQL> column log_new format a30
    SQL> set linesize 300
    SQL> select log_old, log_new from log_06302011;
    LOG_OLD                        LOG_NEW
    <test_06302011><a1>1</a1><a2>1 <test_06302011><a1>1</a1><a2>9
    </a2><a3>1</a3><a4>1</a4><a5>1 9</a2><a3>1</a3><a4>1</a4><a5>
    </a5><a6>1</a6></tes           1</a5><a6>1</a6></te
    SQL>

  • How to define a column as html in a nested data set

    http://www.nmprc.state.nm.us/bailbonds2.htm
    If you click on Terms and definitions, and then click on any
    of the collapsible panels you can see that the html code is still
    showing. I got "name" and "desc" defined right, but despite many
    trials, I have yet to figure out how to define the column "answer"
    as html.

    ok, I tried it with the non-minimized files and it did the
    same thing, though I was able to fix it by adding
    {entityEncodeStrings: false });
    var ds1 = new Spry.Data.NestedXMLDataSet(dsAgents,
    "faqblock/agents", {entityEncodeStrings: false });
    it is now a working page
    http://www.nmprc.state.nm.us/bailbonds.htm
    you can see it with the packed files as bailbonds2 (the link
    in the originating post)
    I learn as I go, and thanks to the wonderful Spry team, I
    don't have too many bumps on the head...*smile* you guys are
    great...from the spry product, to the documentation, to the
    samples, and demos, I have never enjoyed using a product more. I
    recommend it to everyone :)

  • Reports with more than 100 columns

    I am using Apex 3.2. I am using a classic report with more than 100 columns. So to use the custom heading in the report, I exported the page,did modification in exported sql file and imported back.
    But when I am passing the parameters from a input screen for the first time either it is showing the all data avilable in the database or with only header. If I do the refresh in input screen and try it then it is working as intended. I am updating at the below loaction of the page.Let me know if I have to update anything more in the sql file.
    declare
    s varchar2(32767) := null;
    begin
    s := null;
    wwv_flow_api.create_report_columns (
    p_id=> 200100535534034253 + wwv_flow_api.g_id_offset,
    p_region_id=> 2003453533453 + wwv_flow_api.g_id_offset,
    p_flow_id=> wwv_flow.g_flow_id,
    p_query_column_id=> 157,
    p_form_element_id=> null,
    p_column_alias=> 'XYZ',
    p_column_display_sequence=> 157,
    p_column_heading=> 'XYZ 123',
    p_column_alignment=>'LEFT',
    p_disable_sort_column=>'Y',
    p_sum_column=> 'N',
    p_hidden_column=> 'N',
    p_display_as=>'WITHOUT_MODIFICATION',
    p_pk_col_source=> s,
    p_column_comment=>'');
    end;
    /

    Hi,
    Its just a general thought and I realize you know your application and user community better I do, but do you think your users are going to be very happy when they are presented with a report with more than a hundred columns? Have you considered maybe presenting the data in some sort of rolled up form from which the user can then drill down to the data they are particularly interested in. Also, I'm sure your LAN administrator would be happy not to see 100+ column by x number row reports being regularly shipped across the network.
    Also, 100+ column reports suggests tables with 100+ columns which are probably not designed in a very relationally compliant way. I find that good DB design usually results in applications that have to make less compromises, such as hacking export files in order to fool the API into making ridiculous, unsupported and unsupportable compromises.
    Just a thought..................
    Regards
    Andre

  • ObjectGUID in a ms sql databse in a varchar(100) column

    HI
    I'm doing
       returnAsBinary = "objectGUID"
    in a <cfldap> query.
    I was thinking of storing this value returned by objectGUID in a ms sql databse in a varchar(100) column as a primary key. Can you see any pitfalls with this method?

    Mabye this is the solution from another website:
    Can anyone please explain how to get the objectguid binary attribute from Active  Directory using cfldap and store it in the database? I need this so as to maintain a global unique id both in the AD and in my  database for the users.  Thanks
    You'll probably have to use JLDAP for this - CFLDAP has many shortcomings that  we've used JLDAP to work around. It's a very simple API and everything works from  within CF. I've blogged a few of things we've done, so that should get you  started:
    http://www.d-ross.org/index.cfm?objectid=9C65EEF0-508B-E116-6F30CA79F5BFDE07
    http://www.d-ross.org/index.cfm?objectid=9C65EF0F-508B-E116-6F851C474448E08B
    http://www.d-ross.org/index.cfm?objectid=9C65ED79-508B-E116-6F81AF8F75FB40AD
    Terry Ryan used a lot of this work to create a CFC that you can use:

  • 64,000 character limit on UDT user defined field column

    Hey All.
    We are storing more then 64,000 characters into a UDT user defined field column as it stores a large XML document. How can I retreive this information from the UDT using the DI API? Everytime I try to do this using either the UDT object or SAP recordset it chops off the data to 64000 characters. The UDF was created as a "TEXT" type using B1 client and when I look in the database it has a datatype of NTEXT.
    Is this a bug or is there no way using DI API to retreive all the data?

    Curtis,
    Apologies for my delay in getting back to you.
    I do not know the reasoning behind the limit.  As far as 2007A is concerned, the documentation that I was looking at when I first responded to your question was the 2007A SDK Help documentation, so I would say it is the same in 2007.
    I believe that you can use ADO to access data in SAP Business One as there are other ISV's that use ADO, just not access via stored procedures directly to the Business One database.  ADO and ODBC connectivity have rules in place for data validation, although it is recommended that you use the Business One API's for data access as much as possible.  You could also store data in your own tables in a separate database and retrieve from there.
    Eddy

  • Perils of the 50 column collection limit and 100 column page limits.

    Hi All,
    You comments and advice would be much appreciated.
    Does anybody know if there are plans with APEX 4.0 to alter the 50 column collection limit and/or the 100 column page limit? This has become a stumbling block to our use of Apex for UI requirements.
    Before someone tells me that it is bad design to have large numbers of columns (>100) on a page, the reality is that we have many tables exceeding 100 columns. Users need the ability to filter data from these tables by way of an interactive report linked to a form where they can edit individual cell values displayed on the form, and submit the updates. The 100 column limit prevents this.
    To avoid the clutter of a 100+ columns being displayed simultaneously the aesthetics can be improved by use of Hide and Show Regions for groupings of like columns.
    I have decided that the forms need to be used for ad-hoc updates only, and not for new record creation, however the 100 column limit means that even this is not feasible. I have thought of using a custom update procedure based on updating only changed* item values which should usually be less than 100 per record. Any ideas on how to do this efficiently??
    Creating new records via large forms is not desirable as users are likely to revolt at filling in anything like 100 items on a form. (I did experiment with a wizard approach involving an insert of mandatory fields on the first page followed by a series of updates to the newly created record, on subsequent wizard pages, but I considered this to be too messy, involved and confusing for the user.
    I decided the a better solution for new records was to do all inserts into these large tables via delimited file (csv's) uploads. With help from previous forum articles, I managed to create a working, generic, table loading tool. Then I ran into the *50 column collection limit*.
    My solution will now have to involve the use of external tables and database stored procedures for processing the data loads, hopefully via an Apex interface. In one application alone this will mean 17 external tables and associated load procedures plus more complex maintenance, troubleshooting and training. All of this would be far simpler without the hard limits on columns.
    Cheers,
    Meagain

    Good questions! We've also run into this problem of attempting to update/insert into tables with more then 100 columns.
    I'm not sure if this is a feasible solution however I was wondering if something might be able to be done with mod pl/sql and flexible parameter passing. If the apex app could create a url with parameter/value pairs then potentially this could go to the mod pl/sql proc that could receive an unlimited number of parameters. Potentially a generic solution could then dynamically use the parameter names to insert/update the relevant columns with the parameter values.
    I haven't had time to try it however - anyone have any thoughts as to whether this would be a practical (or even possible) approach? Are there other ways of getting around this with apex?
    As for loading data from a file the solution here: http://www.danielmcghan.us/2009/02/easy-csv-uploads-yes-we-can.html can be extended beyond 50 columns reasonably simply. You need to alter the temp table and in the package the TYPE csv_rt and where the value is read into the csv_rt variable (l_record).

  • CSV Output for Classic Reports 100 columns.

    Hi,
    After hours of research and several attempts, I still haven't been able to figure out a way to export a report in CSV format. I can't use an Interactive Report as the view I am displaying on the report is larger than 100 columns. Although all the columns are displayed on the report,the CSV Output link doesn't export all the columns. Can anyone help me out? I would really appreciate it.
    Thanks a lot.
    Werot.

    Were we looking at the same page?  That page shows an ORACLE PACKAGE that you can modify if need be to get what you want.  It's NOT a plugin with wrapped code..
    (You need to look for this line in the blob: The source code for the package: as_xlsx)
    Thank you,
    Tony Miller
    LuvMuffin Software

  • How to define cells/columns for export/re-import to another app

    I want to export a basic contact list to then import into another program (it's an email program, doesn't matter). It's a basic table with 3 columns: first name, last name, email address. How do you define the columns/cells so when importing in another app it knows what is what. Want to export as a tab-delimited or comma-delimited text file.
    thx.

    Christopher,
    It's hard to say what that un-named other app might require for field identification, but your best bet is to have the field titles in a Header Row.
    To produce a comma-delimited text file, assure that your data table is the only thing in your document. Isolating the data in this way will prevent complications. Then, File > Export > CSV.
    To produce a tab-delimited text file, Select and Edit > Copy the table in Numbers and then Edit > Paste and Match Style in a Pages doc. Save the Pages doc.
    Regards,
    Jerry

  • Apex error - A maximum of 100 columns can be selected

    Greetings!!
    Version:
    Oracle 11.2
    Apex 4.1
    I have a dynamic classic report which brings back the result through a function. The report result shows data by week based on the dates selected. When the report has more than 100 columns I am getting the error - 'A maximum of 100 columns can be selected'. Is there a way to avoid the 100 columns limit in the report? Also is it possible to export the report to CSV file directly without getting this error in the report page?
    We are planning to upgrade to 4.2. Has this limitation been fixed in 4.2?
    Thanks,
    SS

    code78 wrote:
    Greetings!!
    Version:
    Oracle 11.2
    Apex 4.1
    I have a dynamic classic report which brings back the result through a function. The report result shows data by week based on the dates selected. When the report has more than 100 columns I am getting the error - 'A maximum of 100 columns can be selected'. Is there a way to avoid the 100 columns limit in the report? Also is it possible to export the report to CSV file directly without getting this error in the report page?Edit your report region > Under region Source > enter a number that matches your requirement into Maximum number of generic report columns
    You can create a custom procedure to generate data in csv format and print it to browser.

  • Define Dynamic column for integrated inbox

    hi ,
    can any one explain me what is the puprose of this setting.
    SPRO>SRM>Cross application basic settings>sap business workflow>define Dynamic columns for integarted inbox.
    what we maintain here and how it is helpful
    regards
    subhash

    Hi Subhash,
    Please check if the following link helps you:
    How to add an extra dynamic columns in workflow inbox?
    Regards,
    Saumya

  • Converting from single episodes to seasons

    What happened to episodes already purchased when you convert from single downloads to buy a whole season? Dop you get credits for the episodes you purchased before iTunes offeres up the series as a single purchase?

    It's not a true conversion problem that you have but more a space problem. Tables columns are created by default with the init. parameter NLS_LENGTH_SEMANTICS character semantics:
    If NLS_LENGTH_SEMANTICS = BYTE
    then 1 character = 1 byte whatever the db character set
    If NLS_LENGTH_SEMANTICS = CHAR
    then 1 character = 1 character size for the db character set.
    If this parameter is changed it is only taken into account for newly created tables or columns: existing columns are not changed.
    See http://download-uk.oracle.com/docs/cd/B10501_01/server.920/a96529/ch2.htm#104327
    The only solution I see is to enlarge your VARCHAR2 columns before running the import...
    Message was edited by:
    Pierre Forstmann

Maybe you are looking for

  • Can I Encode to These Settings with Compressor??

    Greetings, I need some help from you good people. I have been tasked with preparing our video program for an SD Television Broadcast. In my many years of using Final Cut, I have never had to export for an official SD Broadcast.  So I declare up front

  • How can I save a named filter and sorting for later use?

    I regularly do several different complex filtering and sorting on large tables. I did not find a way to save them for later one-click reuse. So I always have to do it again, which is time-consuming and error-prone. Hoped to get a solution by AppleScr

  • BIServer cannot start up

    Dears, We are facing a weird problem here. We restart the service without changing any configuration or environment setting, and the BIServer keep failing in start up. Other components are working just fine. We found couple logs in the following log

  • Forgot sysadmin password, how to reset?

    Hi We have oracle EBS R12.0.6 instance running.Somebody who has system administrator responisiblity changed, sysadmin password. When i query help>record history does shows 'system logon=unknown'. If auditing is not enabled, how do i know who changed

  • Workflow Decision suppress "Objects and attachments "

    Hi all, Is there a way to suppress the "Objects and attachments " message or change the text that reads "No attachments or objects"? Thanks in advance, Scott