Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

6
votes
3answers
1k views

Impact of defining VARCHAR2 column with greater length

What are the effects of defining a column with VARCHAR2(1000) instead of VARCHAR2(10) in Oracle, when the values are not longer than 10 Byte? Does the column only take the space really necessary to ...
4
votes
1answer
126 views

Wasn't there a switch to toggle Oracles empty varchar2 - null behavior?

As everybody working with Oracle knows, it an empty Varchar2 will result in a NULL value when put into a Varchar2 column. I (and a coworker as well) thought we had read about a parameter that could ...
3
votes
2answers
536 views

oracle utl_mail message body size limit

I am using the utl_mail procedure in oracle 10.x and have noticed that if I try to pass a value with a length of more than 4000 characters into the varchar2 input for Message, I get an error: 4000 ...
3
votes
4answers
624 views

Oracle empty strings

How do you guys treat empty strings with Oracle? Statement #1: Oracle treats empty string (e.g. '') as NULL in "varchar2" fields. Statement #2: We have a model that defines abstract 'table ...
2
votes
1answer
32 views

PL/SQL - Delete a character in a VARCHAR2

(I'm sorry for my english...) I'd like to know if I can delete a character in a varchar2 : FOR FF IN REQ LOOP IF FF.COLUMN_NAME = ANCIEN THEN ORDRE_DYN := ORDRE_DYN || ANCIEN; ELSE ORDRE_DYN := ...
2
votes
1answer
561 views

Space character that persists in varchar2 in Oracle 11g for display in SSRS 2008

Is there a space or other non-printing character I can insert to a varchar2 column that will not be trimmed away and result in a NULL? I just want to insert a blank into the column so it displays ...
2
votes
2answers
131 views

Varchar2 and Oracle quick question

Hi guys I'm using varchar2 for a product name field, but when I query the database from the run SQL command line it shows too many empty spaces, how can I fix this without changing the datatype here ...
2
votes
1answer
254 views

Ibator didn't generate Oracle varchar2 field

I have table APP_REQ_APPROVE_COMPARE with following fields: "ID" NUMBER NOT NULL ENABLE, "TRACK_NO" VARCHAR2(20 BYTE) NOT NULL ENABLE, "REQ_DATE" DATE NOT NULL ENABLE, "OFFCODE" ...
1
vote
3answers
86 views

Finding rows that don't contain numeric data in Oracle

I am trying to locate some problematic records in a very large Oracle table. The column should contain all numeric data even though it is a varchar2 column. I need to find the records which don't ...
1
vote
2answers
123 views

using long string(over 4000) in oracle query

I know that in sql varchar2 can only be around 4000. I know that in oracle PL varchcar2 can be around 32000. I have a varchar2 variable defined that is over 4000 characters long and I want to use it ...
1
vote
1answer
132 views

How do I check that a varchar2 variable in PL/SQL is like 10 characters in a trigger?

How do I check that a varchar2 variable in PL/SQL is like 10 characters in a trigger? And does it automatically proceed with the insert it its good? --trigger that checks that number of characters ...
1
vote
1answer
340 views

Why am I getting “ORA-01429: Index-Organized Table” when trying to modify column from VARCHAR2(200) to VARCHAR2(1000)?

It's currently a VARCHAR2(200) in the database, but it needs to be raised to VARCHAR(1000), so I am attempting to run this script: ALTER TABLE CONTRACTOR MODIFY ( NOTE VARCHAR2(1000) ); Oracle ...
1
vote
3answers
559 views

oracle 10g ordering varchar columns when containing numbers in front

I have a Oracle 10g DB and have a VARCHAR2 (2000 Char) column lets name it TEST which can contain numbers in front for example : test 1test 3test when i call " ... order by TEST asc" or simply " ...
1
vote
1answer
296 views

How does varchar2 sorting in oracle works?

I'm sorting a Oracle SQL query by a Varchar2 column. But when I get the results i can not correctly understand the ordering. Which is the logical order. first lower letters? numbers? symbols?. Here I ...
1
vote
1answer
2k views

What is the default size of a varchar2 input to Oracle stored procedure, and can it be changed?

I have a stored procedure in Oracle Database 10g where my input is a varchar2 but I'm having issues getting it to run when the input string is long (not sure of exact length maybe > 8000). My ...
1
vote
1answer
123 views

Max size in a connected by prior Oracle

I've got some help turning my table of the sort: Col 23 25 15 53 ... into something like 23,25,15,53... The query that does it is SELECT max(ltrim(sys_connect_by_path(flow_run_id, ','), ',')) ...
1
vote
1answer
156 views

Replace CHAR with VARCHAR2

How can I replace CHAR with VARCHAR2 in all tables in a schema? Note: I'm content with a query that returns the ALTER TABLE statements so I can save the script and run it again.
1
vote
0answers
542 views

Convert from Oracle VARCHAR2 to MySQL TEXT

How to do correct conversion of data from Oracle VARCHAR2 type to MySQL TEXT type? I want insert it into mysql table in field with TEXT type through DBLink.
1
vote
1answer
366 views

Oracle Character Types

Is using a VARCHAR2 (1 BYTE) any less efficient than using CHAR(1 BYTE)? Is using a VARCHAR2 (2000 BYTE) any less efficient than using CHAR(1 BYTE), if I never put any value longer than one character ...
0
votes
1answer
40 views

Oracle JDB Thin Client - Unique index with varchar2 not used

First som basics. Java 6 OJDBC6 Oracle 10.2.0.4 (also the same result in 11g version) I am experiencing that a sql statement is behaving differently when executed from Java with the OJDBC6 client ...
0
votes
3answers
158 views

Characters spilled over multiple columns in Oracle 11g?

This is related to question: How to store unlimited characters in Oracle 11g? If maximum I need is 8000 characters, can I just add 3 more varchar2 columns so that I will have 4 columns with 2000 char ...
0
votes
5answers
2k views

Why does Oracle varchar2 have a mandatory size as a definition parameter?

I want to know why Oracle needs the size parameter in the definition of the varchar2. I think that is for constraint. Would it be a better option that oracle takes this parameter as an optional? I ...