Viewing 15 posts - 1,021 through 1,035 (of 1,988 total)
Does your developer by any chance have other permissions that would explicitly deny privileges in those schemas?
You can check pretty easily, make a new user and give them...
September 27, 2017 at 8:38 am
The answer is neither, you should have good requirements first. Then an agreed upon design between any front and database developers that can be worked on collaboratively as issues come...
September 26, 2017 at 10:58 am
Hmm... there aren't read only schemas, do you mean read only permissions for a login/role?
But more importantly why are you not worried about SQL injection? Do any of...
September 25, 2017 at 8:31 am
September 21, 2017 at 1:52 pm
September 21, 2017 at 8:19 am
Deleting records does not automatically shrink the mdf file, you have to run a shrink operation to do that. Do you actually need to free up the disk space?
September 20, 2017 at 11:52 am
I have this requirement alot. I use a pretty straight forward powershell script for it, you specify a file to wait for, the minimum age of the file(prevents picking up...
September 14, 2017 at 3:50 pm
Is your requirement really only for exactly midnight? The options above work for exactly midnight as in 2016-12-13 00:00:00.000, what about 2016-12-13 00:00:00.003?
September 14, 2017 at 2:44 pm
September 14, 2017 at 2:07 pm
If this is really just a temp table why do you need the identity on the temp table, just make it a plain int with no identity and you can...
September 13, 2017 at 1:51 pm
If you mean the mdf file didn't shrink after rebuilding the indexes that is expected. You should see free space in the DB if you look in SQL Server but...
September 13, 2017 at 9:08 am
You could also try running it with OPTION(MAXDOP 1) and see if you get any difference.
September 12, 2017 at 8:13 am
Viewing 15 posts - 1,021 through 1,035 (of 1,988 total)