Viewing 15 posts - 3,406 through 3,420 (of 6,038 total)
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
Jeff Moden (8/19/2015)
Jacob Wilkins (8/19/2015)
September 24, 2015 at 2:09 pm
EricHansen,
What you're proposing is edgy, and perhaps you're earnestly advocating this use of MS Jet database, because that's the database and set of API you're most familiar with. However, it...
September 24, 2015 at 2:03 pm
There are 3rd party applications that can read SQL Server backups, so the file format must be published in public domain. It may not contain all the data necessary to...
September 24, 2015 at 12:30 pm
Viewing 15 posts - 3,406 through 3,420 (of 6,038 total)