@RamseierB @martinberger_ch Hi @RamseierB
In this case I can't recommend this approach (update-registry). In my test-env this changed 3 things in addition to the fix:
- Hostname was entered incorrectly (a small "-c" was added)
- TimeZone was rewritten in quotes
- NTP server was removed completely
I love #python: <tab><blank> looks like the same as <blank><blank><blank> in #vscode but <tab> will be interpreted as <blank><blank> #mademyday#megadoof#iamnotaprogrammer
Want to stop people running SELECT * on a table?
Add a virtual column returning an error, such as divide by zero:
alter table t
add zero_divide int as ( 1/0 );
select * from t;
ORA-01476: divisor is equal to zero
#SQL