Oracle startup not possible – ORA-00845: MEMORY_TARGET not supported on this system – but memory size seems to be fine

You might be using Automatic Memory Management (AMM). AMM uses two initialization parameters: MEMORY_TARGET MEMORY_MAX_TARGET The shared memory file system should have enough space to accommodate the MEMORY_TARGET and MEMORY_MAX_TARGET values. To verify: In UNIX/Linux, you will have to set the shared memory file system accordingly. Verify: Set: For example,

ORA-12899: value too large for column

have a look into this blog, the problem resolved for me by changing the column datatype from varchar(100) to varchar(100 char). in my case the data contains some umlaut characters. http://gerardnico.com/wiki/database/oracle/byte_or_character

Sql query – getting rid of hard-coded values

I can think of at least two options… Or… Both let you have multiple different sets of constants. One is expandable without changing the schema, though the query still would need to change. The main advantage of either approach is that you can re-use the constants else where, but store them once in a centralised … Read more

SQLite – UPSERT *not* INSERT or REPLACE

Assuming three columns in the table: ID, NAME, ROLE BAD: This will insert or replace all columns with new values for ID=1: BAD: This will insert or replace 2 of the columns… the NAME column will be set to NULL or the default value: GOOD: Use SQLite On conflict clause UPSERT support in SQLite! UPSERT syntax was added to … Read more

MySQL WHERE IN ()

Your query translates to It will only return the results that match it. One way of solving it avoiding the complexity would be, chaning the datatype to SET. Then you could use, FIND_IN_SET

Oracle Apex column link from LOV values

I’m mostly used to Apex 4.1, but this approach should work. You don’t need an LOV. Your report query should include both the MAST_ID and the TASK_NAME columns. Hide the TASK_NAME column and set MAST_ID as the linking column. If you set the Link Text (under Column Link) to #TASK_NAME#, you should get the desired result. Display As should be left at the default (Display as Text etc).