Viewing 6 posts - 1 through 6 (of 6 total)
As a DBA EF is a great job creator just because it can't be worst in terms of performance, it generates huge sql sentences that must be compiled and cached...
June 26, 2018 at 10:02 am
Yes the concept is a bit confusing, so I'll try to explain the whole concept.
Any GRANT like gives a specific permission to someone.
Any REVOKE like deletes to someone a previously...
May 10, 2016 at 9:15 am
No to use profiler is a good idea...
Try this queries to find where your resources are beeing consumed
LONG RUNNING PROCESS (Processess running "now")
Use master;
IF OBJECT_ID('tempdb..#paso') IS NOT NULL
...
March 22, 2016 at 4:27 pm
First, an advice, when you use funcions you force SQLServer to run your query in only ONE thread.
CASE is cleaner to read than IIF and supported in more SQLServer versions
Alias...
March 22, 2016 at 3:47 pm
BCP has the -C option, it converts the non characters datatypes to character datatypes
February 16, 2012 at 7:03 am
BCP has the -C option, it converts the non characters datatypes to character datatypes
February 16, 2012 at 4:29 am
Viewing 6 posts - 1 through 6 (of 6 total)