Viewing 15 posts - 3,316 through 3,330 (of 6,035 total)
EdVassie (10/8/2015)
October 9, 2015 at 7:53 am
terry999 (10/9/2015)
That is a good idea, it is simple to understand. I went for the permissions in the end.
All new data is protected. I can still...
October 9, 2015 at 7:49 am
It seems to me that 6 GB is very low end for a database server today. I've got more memory than that on my laptop. Even 12 GB is low...
October 9, 2015 at 7:42 am
For an OLTP database (medium size tables, single inserts, many users, mostly small repetitive queries), you want re-usable query plans as much as possible.
However, in a data warehouse (very...
October 9, 2015 at 7:16 am
Markus (10/8/2015)
October 8, 2015 at 1:49 pm
The SQL query is executed server side, so it will run approximately the same, regardless of where it originates (SSMS, SSRS, stored procedure).
October 8, 2015 at 1:38 pm
Adding columns to a table requires an exclusive table level lock, so it may be in a blocked state.
Also, if the columns have a default value, then it's an...
October 8, 2015 at 1:31 pm
Here is me getting assigned tasks:
Take a look at the email I just forwarded.
Figure out what's going on.
Fix it.
Let me know as soon as it's done.
October 8, 2015 at 1:20 pm
Run this to get a breakdown of how much memory is allocated to each memory cache,. The page buffer cache is CACHESTORE_OBJCP and query plan cache is CACHESTORE_SQLCP.
Select [type],SUM([single_pages_kb]) As...
October 8, 2015 at 12:37 pm
I only use triggers as a last resort, and this isn't one of them. One technique you can use is to add a column containing a CHECKSUM() of whatever columns...
October 8, 2015 at 11:04 am
Soundex has been around since 1918 and it's algorithm for letter substitution is documented here:
https://en.wikipedia.org/wiki/Soundex
Perhaps you can use REPLACE() function to massage the keywords before you do SOUNDEX() comparison.
SOUNDEX(replace('Kolton','K','C')) =...
October 8, 2015 at 10:40 am
All the folks committed to psychiatric hospitals during past decades, because they were convinced their TV and refrigerator were spying on them, we can let them all out now.
They're no...
October 8, 2015 at 10:24 am
Kim Crosser (10/7/2015)
...
This is a very useful code pattern I expect to use in more than just this project. 😎
Hey Kim, when you get it all working and identify...
October 8, 2015 at 9:12 am
Personally, I'd rather not deal with 100 separate SSIS packages, even if they are auto generated by BIML. If you can leverage BIML or .NET to programmatically modify the DataFlow...
October 8, 2015 at 9:00 am
Viewing 15 posts - 3,316 through 3,330 (of 6,035 total)