Viewing 15 posts - 46 through 60 (of 49,571 total)
November 2, 2018 at 11:44 am
November 2, 2018 at 9:34 am
It's got nothing to do with the log records as full backups do not interfere with the log chain. EVER.
The DB on the secondary is read-only. A...
November 2, 2018 at 9:33 am
Functions need the schema name.
Also check that you aren't somehow in compat mode 80 or lower.
The code as posted parses fine for me, can't run as I...
November 2, 2018 at 9:27 am
Correct, don't ask - its to do with read only permissions on that...
November 1, 2018 at 3:12 am
November 1, 2018 at 3:09 am
A .trc file is a binary file, so you should expect to get garbage when you open it in a text editor.
What are you trying to do?
October 31, 2018 at 3:50 pm
Never encrypt passwords. Salted hash, then the app hashes (with the same salt) and you compare the hashes.
October 31, 2018 at 3:49 pm
October 31, 2018 at 3:47 pm
Please note: 8 year old thread.
October 29, 2018 at 2:09 am
You'll need to join to the table [Test1]. You can't just dump a partial select inside a function where a column or value is required and expect it to...
October 27, 2018 at 3:06 pm
October 26, 2018 at 12:10 pm
IN vs EXISTS: https://sqlinthewild.co.za/index.php/2009/08/17/exists-vs-in/
NOT IN vs NOT EXISTS (beware the behaviour difference with NULLs) https://sqlinthewild.co.za/index.php/2010/02/18/not-exists-vs-not-in/
October 26, 2018 at 2:51 am
Nope. Temp tables are part of user transactions, and if there's a rollback any operations against them within the transaction will be rolled back. Table variables are the only thing...
October 25, 2018 at 1:44 pm
Viewing 15 posts - 46 through 60 (of 49,571 total)