0
votes
0answers
70 views

turkish character decode of nclob data to html in oracle

I see nclob data in editor of oracle pl sql developer as Detayları resmi yazı ile iletilen tüberküloz ... But I want to decode this into Detayları resmi yazı ile iletilen ...
-2
votes
1answer
46 views

DECODE not working while CASE works [closed]

DECODE((select key_value from l500demo.sysdirm where system_key = 'NLPERIOD'), '01', a.opening_bal, '02', a.opening_bal + a.base_amount01, '03', a.opening_bal + ...
1
vote
1answer
72 views

show data with decode function in oracle

original data (image) I want to display my data by concatenating several columns. But the data that appears less than perfect: there is a comma behind at the end of the concatenations, like the ...
1
vote
1answer
139 views

using decode in query multiple results?

SELECT PE.PHYS_RESR_ID,PE.EQMT_INIT, PE.EQMT_NBR, decode (EEU.dimn_type , 'EXTHGT', EEU.dimn_valu) as EXTHGT, decode(EEU.dimn_type, 'EXTHGT', EEU.uom_code) as UNIT_EXTHGT, decode (EEU.dimn_type , ...
-1
votes
2answers
655 views

How many WHEN…THEN Condition is allow in CASE in SQL

I am working with the CASE & DECODE. The SYNTAX of CASE is : CASE [ expression ] WHEN condition_1 THEN result_1 WHEN condition_2 THEN result_2 ... WHEN condition_n THEN result_n ELSE ...
0
votes
2answers
124 views

SQL DECODE optimisation

If I use something like this inside an UPDATE instruction and I want to check if the functions returns 'N', so set ' ': ta.COD_ACT_MCH= ...
0
votes
5answers
279 views

Is it possible to check whether a value is in the list of items in a single Oracle Decode Function?

I would like to know that if I can compare a value with a list of items in an decode function. Basically I want to know that if is it possible to make a decode statement's 'search' value a list. For ...
2
votes
3answers
297 views

How to use SELECT result record as DECODE parameters?

Is it possible to use SELECT result as DECODE parameters when this SELECT returns only one record with prepared string? For example: SELECT replace(replace(serialized_data)..)..) as result FROM ...
0
votes
4answers
1k views

oracle case or decode? - how to handle no recs

How can I make sure in this case statement that if I get now rows selected that I set that my result=1? I want a value of 1 if I have no records or a count of 0. I would also want a null date to be ...
3
votes
2answers
316 views

Why is the load method of a datatable sometimes so slow?

The project is a web app in ASP/VB.net. The issue is that some pages are mind-boggingly slow. After trying to track down the bottleneck, it was discovered to be the load method when filling a ...
5
votes
5answers
6k views

oracle: decode and subquery select result

I have a oracle query and part of it is calculating some value using DECODE. For example: SELECT ..., (SELECT DECODE((SELECT 23 FROM DUAL), 0, null, ...
0
votes
1answer
360 views

SQL Server 2008 - Implementing DECODE

First, I know there are plenty of posts etc relating to the use of CASE in place of DECODE, but they don't appear to fit with my concern. I am trying to convert an Oracle PL/SQL procedure to SQL ...
1
vote
4answers
1k views

SQL - A simpler function than decode

I am working with a pl/sql procedure. I have an initialized variable myvar and I want to check its value : if it does not contain 'Z', I want it to contain 'P'. I am currently doing it this way: ...
0
votes
4answers
2k views

oracle: can you use DECODE across tables?

pretty new to the function, but as i understand DECODE tests the specified attribute (arg1) against another specified value (arg2) and if they match, it displays a result (arg3) otherwise if it ...
2
votes
3answers
3k views

Using Decode as a like statement in oracle

I need to write a sql statement like this: SELECT id_segmento AS Segmento, Decode (id_segmento , '1' , 'a', 'b' ) FROM mapchile.segmento but in this case I will obtain an 'a' when id_segmento ...
3
votes
1answer
1k views

Oracle Decode function results with different formats

SELECT DECODE (SYSDATE, SYSDATE + 1, NULL, SYSDATE) FROM DUAL; SELECT DECODE (SYSDATE, SYSDATE + 1, TO_DATE (NULL), SYSDATE) FROM DUAL; why am i getting the results in different formats from ...
4
votes
5answers
20k views

Comparing dates in Oracle using the decode function

I need to compare two dates using the Oracle decode function to see if one is less than or equal to the other. I found this article - http://www.techonthenet.com/oracle/functions/decode.php Which ...
4
votes
2answers
2k views

Lookup table for oracle decodes?

It might be a newbie question, but still.. We are all familiar with Oracle's decodes and cases, e.g. select decode (state, 0, 'initial', 1, 'current', 2, 'finnal', ...
2
votes
3answers
3k views

Not sure how to use Decode, NVL, and/or isNull (or something else?) in this situation

I have a table of orders for particular products, and a table of products that are on sale. (It's not ideal database structure, but that's out of my control.) What I want to do is outer join the order ...
8
votes
3answers
5k views

ORDER BY DECODE(BLAH, [COLUMN NUMBER]) on a single column query. How does it work?

Hi I need help to understand the decode part of a query that goes something like the following. SELECT ax.animal_code FROM raw_animal_xref ax, animal_xref_type axt WHERE ax.animal_mnemonic ...
0
votes
1answer
2k views

Decode() function query in oracle

Can we use a select query in embedded sql (pro C) as the first argument in Decode() function.
0
votes
2answers
2k views

SQL decode on column4 but only when column5 is distinct

I need to change the sum(decode()) expressions that are like SUM(Decode(vcon.WAGON_TYPE_CODE,'MS',1,0)) to something that counts rows with vcon.WAGON-TYPE-CODE = 'MS' but only when wag.ACI-TAG-NO ...
14
votes
3answers
20k views

Using an Alias in a WHERE clause

I have a query which is meant to show me any rows in table A which have not been updated recently enough. (Each row should be updated within 2 months after "month_no".): SELECT A.identifier , ...