Viewing 15 posts - 76 through 90 (of 622 total)
and I expect in any given installation 50K of them are empty 🙂
August 17, 2018 at 6:20 am
and the moral of this story is to indent your code properly 🙂 If you had done that you would have quickly spotted the missing END
August 8, 2018 at 8:01 am
August 8, 2018 at 7:59 am
Nikos,
Welcome to the boards and the world of SQL. You will find the folks on this forum super-helpful but they are all busy people. I would recommend looking...
August 8, 2018 at 7:42 am
Personally I find XML (with an XML parser to properly do the indentation) much easier to read than JSON and it is a shame that JSON seems to be the...
August 7, 2018 at 10:00 am
and be thankful you are on 2016/2017. JSON was not supported in earlier versions 🙂
Alternatively, tell your boss it can't be done in SQL and get him to pay...
August 7, 2018 at 6:24 am
August 7, 2018 at 6:19 am
+1 for SQL prompt. Also T-sql Cop which picks up a whole bunch of other code rules apart from just formatting.
August 7, 2018 at 6:14 am
Look at SQL Tool belt by Red Gate, the sponsors of this site. some great documentation tooling, source code control and migration scripting functions. Apex and Pragmatic Works (now part...
August 7, 2018 at 6:12 am
getting OT now, but the business domain should drive both the EF model and the database schema. EF and the fluent API is one way to build the database schema...
August 7, 2018 at 6:08 am
Jonathan AC Roberts - Tuesday, July 31, 2018 3:47 AMIdeally all your SQL calls should be in stored procedures.
As an SQL developer I...
August 6, 2018 at 6:16 am
looks like a gaps and islands problem to me.
You might find it easier with a Date Tally Table too.
You could RANK() the data and then take the...
May 21, 2018 at 9:53 am
This is really a question of semantics, if it is necessary to have a properly conformed name or address for legal purposes, I would argue that that is not a...
May 21, 2018 at 9:46 am
Its been a while since I connected to Oracle. Have you looked at the ODBC drivers from Attunity - I found them to be serveral orders of magnitude faster than...
May 21, 2018 at 7:28 am
I would suggest the following two scenarios are appropriate for cursors:
1) When you need to do something outside of CRUDing data in one or more table. (e.g. scripts...
May 21, 2018 at 7:26 am
Viewing 15 posts - 76 through 90 (of 622 total)