Tagged Questions
2
votes
1answer
42 views
What is the best way to trim leading and trailing single quotes in pl_sql
I am getting a Varchar2 variable with leading and trailing single quotes but I want to remove these single quotes, I am doing it like
trim(BOTH '''' FROM lastname);
It is giving me right result ...
3
votes
4answers
144 views
Trim integer from a string
There is a Trim function that I can trim a specific character, but I was wondering if it could trim integers.
I have a list of strings:
'ABC01'
'ABCD02'
'AB5123'
Length and number are irregular.
...
1
vote
1answer
285 views
Is there an Oracle Trim equivalent that works on VARCHAR fields made up exclusively of whitespace?
SELECT 1 FROM dual where trim('X ') = 'X'
Gives 1.
SELECT 1 FROM dual where trim(' ') = ''
Gives no rows.
Is there an easy way to select all rows where field is whitespace short of regex?
Is ...
1
vote
2answers
432 views
Oracle SQL possible to trim characters before a character is found?
Not sure if it is possible to do with trim in a select statement:
Basically want to trim anything characters in a string BEFORE a character is found:
say there are values (names) Oliver, Dave and I ...
1
vote
3answers
232 views
SQl Trim problem
I am trying to pull data from table using this select statement..
SELECT ID_NO
FROM EMPLOYEE
WHERE trim(SYN_NO) ='21IT';
SYN_NO column hold data in this format
21IT / 00065421
I want to get just ...
1
vote
3answers
257 views
Inserting data into Oracle
I am trying to migrate a DB from Informix to Oracle.Informix had an option like while inserting into a table if the size of the value exceeds the column length then Informix automatically trims the ...
10
votes
3answers
60k views
How to Select a substring in Oracle SQL up to a specific character?
Tried searching Google and Stackoverflow first, but couldn't come up with a simple answer for what I wanted to do. (Maybe my Google-Fu is weak. Who knows?) Anyway...
Say I have a table column that ...
4
votes
4answers
2k views
TRIM RTRIM LTRIM Perfomance
I am only required to do RTRIM() in some part of query but if i do TRIM() will that affect performance.
Is Trim()
Slower/Faster/Exaclty same(NOT even has negligable difference)
compared to RTRIM() ...
0
votes
2answers
2k views
Oracle 8, SQL: RTRIM for string manipulation is not working as expected
Oracle 8 SQL: I do have data like "VTR 564-31 / V16 H12 W08 E19 L14" from which I want to trim the second part => "VTR 564-31"
According to this website I can use the rtrim function
...
2
votes
2answers
5k views
sqlplus remove \r \n \t from spool
Is there any sql*plus command to remove \r \n and\t from the result set that's going out to the spool file? That is, "trim" every record?
We've used set trim on in the past, but it doesn't seem to ...
2
votes
2answers
5k views
How to trim all columns in all rows in all tables of type string?
In Oracle 10g, is there a way to do the following in PL/SQL?
for each table in database
for each row in table
for each column in row
if column is of type 'varchar2'
column = ...
9
votes
5answers
31k views
Trim Whitespaces (New Line and Tab space) in a String in Oracle
I need to trim New Line (Chr(13) and Chr(10) and Tab space from the beginning and end of a String) in an Oracle query. I learnt that there is no easy way to trim multiple characters in Oracle. "trim" ...
0
votes
1answer
749 views
Oracle can I use scalar functions in WHERE Clause? or a NULL issue
somehow I get never any results when I call:
select * from table_1 t1 where t1.c1 IS NOT NULL and trim(t1.c1) != '' ;
trim(t1.c1) != '' part causes problems actually i return nothing.

