Viewing 10 posts - 1 through 10 (of 10 total)
@kramaswamy I agree that there would be some performance hit on this, but it shouldn't be much especially if both of the data columns have unique indexes. Being...
January 28, 2021 at 1:41 am
The answer is "yes" (remember the questions is "can I"), but definitely not sure that you would want to - it would also depend on how many columns are in...
January 27, 2021 at 9:16 pm
Thank you for a great article - although the internet wasn't the same 20 years ago when I started....
I have had the fortune and/or misfortune to be the sole Database...
September 22, 2020 at 9:08 pm
WITH singleTab([id], [name], [previousid]) AS (
SELECT t1.id, t1.Name, t2.previousid
FROM table1 t1
left join table2 t2 on t1.id = t2.id
),
recusive(id, Name,...
June 14, 2019 at 10:01 pm
July 16, 2018 at 1:59 pm
July 13, 2018 at 4:03 pm
While the above solutions work, they give you a different answer than Oracle if any of the values is NULL. Oracle will always return NULL for the Greatest and Least...
April 9, 2018 at 11:19 pm
Hi
It seems this topic has come around again, so I will add my 2 cents worth:-)
I come from an Oracle background where PL/SQL has a much broad...
August 10, 2017 at 11:18 pm
There are exceptions to every rule, so while "All tables should have at least one index" is good rule - it doesn't mean that should not be any exceptions.
So to...
February 19, 2015 at 1:47 am
Good question, although the answer was given away because there was only one answer with "system database". If you had included system database into the list earlier I would...
February 3, 2015 at 1:47 pm
Viewing 10 posts - 1 through 10 (of 10 total)