rosario vigilante
Il mio blog
I miei ultimi 10 articoli
How can i find out the number of characters in a string?
1) SELECT NVL(LENGTH(TRANSLATE('&str','A0123456789','A')),0) AS num_chars FROM DUAL 2) SELECT length(regexp_replace('1p9j99','[[:digit:]]','')) FROM dual; result: 123 should return 0 12A3 should...
Check if string is Number
If you'd be able to replicate all of Oracle's (or your) rules concerning numbers but it might be possible to validate using regular expressions and avoid context switching; with t as ( select '123'...
'Query Hits' and 'Query Options' in Oracle Forms
What do 'Query Hits' and 'Query Options' mean in the context of a block in Oracle Forms? Use SET_BLOCK_PROPERTY(, QUERY_HITS, ); in an On-Count transactional trigger to tell Oracle Forms how many...
Obtaining Query Count Without EXECUTE-ing a Query
FUNCTION query_count (p_block_name VARCHAR2) RETURN NUMBER IS cnt NUMBER; BEGIN GO_BLOCK(p_block_name); COUNT_QUERY; cnt := GET_BLOCK_PROPERTY(p_block_name, QUERY_HITS); IF FORM_SUCCESS THEN RETURN...
Sergio Leone Peter Weir
Questo è il primo articolo del tuo blog. È stato creato automaticamente per aiutarti ad iniziare su overblog. Puoi modificarlo o eliminarlo attraverso la sezione "pubblica" dell'amministrazione...
Linux
Questo è il primo articolo del tuo blog. È stato creato automaticamente per aiutarti ad iniziare su overblog. Puoi modificarlo o eliminarlo attraverso la sezione "pubblica" dell'amministrazione...
Informix
Questo è il primo articolo del tuo blog. È stato creato automaticamente per aiutarti ad iniziare su overblog. Puoi modificarlo o eliminarlo attraverso la sezione "pubblica" dell'amministrazione...
Using Oracle Sequence
When I bind an Oracle Sequence to an Item it "jumps" a lot of numbers. When I do some inserts it does not "jump". It create the numbers on the sequence, but when I insert in another day it...
Print on first page only
Suppose you have a image in the margin section of the report which you want to print only on the first page. You can do this by using a Format Trigger on it. In the Format Trigger, use...