Viewing 15 posts - 3,406 through 3,420 (of 6,041 total)
Unless you change the hardware, a database server will always run at the same speed. However, individual process typically sprint, stop and wait, sprint, stop and wait, etc. It stops...
September 28, 2015 at 9:40 am
I'm not a fan of Test Driven Development, as John is. Usually this is because I'm not always 100% sure of the results I want or have been given. I've...
September 28, 2015 at 9:00 am
kim / data detection group (9/17/2015)
You can bundle all your related procedures and functions into a...
September 28, 2015 at 7:31 am
If any of the application or user accounts have sysadmin membership, then that complicates the issue. However, another option to mitigate that is to alter login status to disabled for...
September 28, 2015 at 7:13 am
Ideally you will never have invalid column values inserted in the first place, because once the bad data is in the table, then all the downstream applications have to tiptoe...
September 28, 2015 at 6:59 am
Did you look into using TRY_PARSE() ?
Rather than telling you True or False if value is "numeric", it will tell you if the value will cast as a specific data...
September 25, 2015 at 1:50 pm
How long has the command been running when the timeout occurs?
In your client, have you set connection timeout and command timeout to 0 or some reasonably long duration?
September 25, 2015 at 12:14 pm
mitzyturbo (9/25/2015)
Unfortunately I can't reproduce it all the time to test this, but if I can get it running slowly...
September 25, 2015 at 11:14 am
I'd expect the 2nd execution of the query to be faster, even with the same plan and number of logical reads, because it's re-using pages from the buffer cache that...
September 25, 2015 at 9:50 am
Regardless of industry, whether it's healthcare or adultery, table columns containing personal identifiers should be encrypted and then downstream applications, ETL processes, and backups should decrypt only as needed and...
September 25, 2015 at 9:40 am
There are hints that can force joins to occur locally or remotely, but the way I've worked around this issue in the past is to pull the data I need...
September 25, 2015 at 8:35 am
Starting with v2012, we have the TRY_PARSE() function. It works very similar to CAST(), except instead of 'Conversion failed...' error, it will simply return NULL.
https://msdn.microsoft.com/en-us/library/hh213126.aspx
print cast('123'+char(160) as int);
Msg 245,...
September 25, 2015 at 7:55 am
chrisn-585491 (9/24/2015)
I'm thinking a nice steak would work in addition to the beers... :rolleyes:
Steak, 20oz margaritas, and Mexican sombreros should help take the edge off.
September 24, 2015 at 3:05 pm
If page compression is enabled, the raw data won't look like clean fixed width records when viewed with something like a Hex editor. My understanding is that recurring strings and...
September 24, 2015 at 2:25 pm
Viewing 15 posts - 3,406 through 3,420 (of 6,041 total)