Viewing 15 posts - 1 through 15 (of 16 total)
This has been one of the more frustrating issues I've tried to resolve and I've basically gotten nowhere. If someone has it solved, I'd love for them to do...
October 31, 2012 at 8:17 am
In my environ, dbcc table check occurs, I believe due to backup option "checksum" which causes a page checksum calculation on every table's data prior to backup.
August 28, 2012 at 8:04 am
Update for Windows 7 x64 OS:
Use HKEY_USER instead of HKEY_CURRENT_USER. You'll need to know your current SID (Security ID). This you'll find by looking at HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows NT\CurrentVersion\ProfileList. ...
August 29, 2011 at 8:26 am
Thanks DJ. Can you maybe explain the purpose of the Set-ExecutionPolicy command? Also, when I tried the sample code, I got an error when trying to restart a...
May 10, 2011 at 3:15 pm
If you plan to be able to "recreate" a result set using audit tables and the underlying query, keep in mind that a join to a non-audited table could make...
June 11, 2008 at 10:32 am
I was going to reply and correct that statement, but you beat me to it. No, the trace does NOT need to be stopped to examine the active trace...
June 10, 2008 at 2:29 pm
SQL tracing in general, and server-side tracing in particular (simply because of its much lower overhead) is one of my favorite tools for a wide variety of tasks ranging from...
June 10, 2008 at 12:51 pm
Well, yes and no. I've had to deal with a variety of performance issues, but I haven't specifically faced this issue. I've more commonly faced i/o problems than...
June 5, 2008 at 3:50 pm
I've used "multi-server" queries and transactions pretty extensively in SQL 2000, and although 2005 has added features that would probably make some of the things that I've done a little...
June 4, 2008 at 10:06 am
What if the reporting server were being used by someone who is running a Win32 client application, for example, that is keeping a live connection to the database. When...
January 23, 2008 at 6:39 pm
Can you [tymberwyld] provide more details on DevExpress. Is this from devexpress.com? Which product?
January 21, 2008 at 6:45 pm
I had started to write a somewhat similar article just last week. Although my concerns and constraints are somewhat different, and final solution completely different, I enjoyed your article....
January 21, 2008 at 6:24 pm
Since none of the previous posters mentioned this, let me add a couple of points. If you use the following data set:
create table test (test int)
insert test select null
insert...
January 8, 2008 at 1:38 pm
I guess there's a lot of things it could be, from the number of columns returned by spEmpErrors to the datatypes, to an error in the procedure itself. However,...
January 2, 2008 at 12:57 pm
From the standpoint of the SQL engine, distinct is equivalent to a group by that contains all of the columns in the select list. So if you understand the...
January 2, 2008 at 12:42 pm
Viewing 15 posts - 1 through 15 (of 16 total)