3
votes
0answers
47 views
How to avoid execution of DatabaseStart Event
When your Database contains a EVENT of type DatabaseStart and you are able to crash the Database Engine during startup with your fabulous code.
How would you fix the database to …
1
vote
0answers
30 views
Please implement a DatabaseStartFailed event
Please implement a DatabaseStartFailed event that gets control when the engine is in the process of failing to fully start a database because of some startup error. This event shou …
4
votes
2answers
49 views
Please implement constraints for local variable declarations.
How many times have you wanted to code something like this?
DECLARE @upgrade_ok VARCHAR ( 1 ) NOT NULL DEFAULT 'Y'
CHECK ( @upgrade_ok IN ( 'Y', 'N' ) );
…
7
votes
2answers
40 views
Please add ON EXISTING {SKIP | UPDATE} to INPUT INTO and LOAD TABLE
How do I import data from a file while skipping existing rows?
Once in a while I have to import data from a file into a table, where some rows may already exists (row with same pr …
5
votes
1answer
28 views
Please implement REGEXP_REPLACE
When i need to validate user input in fields it is often necessary to make sure only a limited set of characters is used.
Example could be European VAT Numbers, Phone, Container …
4
votes
1answer
41 views
Product Suggestion: Please implement record variable type
I'd like to see records added to the stored procedure language of SQA. One of the biggest complaints from my developers when moving code from Oracle to SQLA is the lack of records …
4
votes
0answers
55 views
Product Suggestion: Please implement collections (arrays)
Another Oracle feature that I would like see added to is some sort of collections in the procedure language. The ability to have arrays at a minimum would be very beneficial. Ora …