Viewing 15 posts - 3,316 through 3,330 (of 6,038 total)
There has been more than one occasion in the past where I would hire on full-time at a company and then conclude within the first 90 days that the job...
October 9, 2015 at 9:09 am
thebrewersinaz (10/9/2015)
October 9, 2015 at 8:58 am
Kristen-173977 (10/9/2015)
...
The actual code to do the CSV part was trivial, but we did need to take care of properly quoting columns that had embedded commas, and then double-quoting any...
October 9, 2015 at 8:17 am
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
Viewing 15 posts - 3,316 through 3,330 (of 6,038 total)