Viewing 15 posts - 3,406 through 3,420 (of 6,035 total)
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
Luis Cazares (9/24/2015)
I'd go up to four. 😎
Careful, when the servers finally do come back online, hopefully the database team won't be slumped face down on their desks snoozing. Or...
September 24, 2015 at 12:16 pm
If you're looking for distinct members in one that don't exist in the other, or possibly members that exist between the two, then consider the EXCEPT and INTERSECT operations.
https://msdn.microsoft.com/en-us/library/ms188055.aspx
-- selects...
September 24, 2015 at 11:49 am
Are you using distributed queries, that is a select statement that joins between the local and remote server using four part naming convention?
Or are you using pass-through queries, that is...
September 24, 2015 at 11:12 am
Viewing 15 posts - 3,406 through 3,420 (of 6,035 total)