Viewing 15 posts - 4,771 through 4,785 (of 8,416 total)
Here is the query to do that:
SELECT EXR.session_id,
EXR.blocking_session_id,
EXR.command,
...
March 28, 2010 at 3:29 am
Jeffrey Williams-493691 (3/26/2010)
March 28, 2010 at 3:20 am
Jose Julio Mota Duarte (3/28/2010)
Backup and file manipulation operations (such as ALTER DATABASE ADD FILE) on a database must be serialized. Reissue the...
March 28, 2010 at 2:55 am
pandrikopoulos (3/27/2010)
The reeindexing took approximately 4 days.Sp_spaceused for the specific table showed that index space reduced to 12 GB !!! but the database is smaller only by 300 GB.
There's...
March 28, 2010 at 2:52 am
Jose Julio Mota Duarte (3/28/2010)
I see the field log_reuse_wait_desc is ACTIVE_BACKUP_OR_RESTORE in master..sys.databases
The log cannot be cleared until the concurrent backup operation completes.
See http://www.sqlskills.com/BLOGS/PAUL/post/Search-Engine-QA-16-Concurrent-log-and-full-backups.aspx
A file activation error occurred. The physical...
March 28, 2010 at 2:28 am
Mani-584606 (3/27/2010)
We enabled the below Trace flags as suggested by MS to investigate a sql dump last year when we are on SQL Server 2005 with SP2 and Max memory...
March 28, 2010 at 2:15 am
Lynn Pettis (3/26/2010)
nitinkumar_tss (3/26/2010)
I want to get the rowid internally generated at table level in sql server. Because I need to perform some task according to the rowid.
Unfortunately, there isn't...
March 28, 2010 at 2:00 am
The article I wrote on APPLY is in the queue for publication.
March 27, 2010 at 10:47 pm
Jeff Moden (3/27/2010)
March 27, 2010 at 8:39 pm
RBarryYoung (3/27/2010)
March 27, 2010 at 8:32 pm
One more alternative, that is optimized well:
SELECT *
FROM TableA
WHERE @Type = 'Lname'
AND Lname = @Value
UNION ALL
SELECT *
FROM...
March 27, 2010 at 8:01 am
Dave Ballantyne (3/26/2010)
3 hours of my time wasted by this stupid problem http://sqlblogcasts.com/blogs/sqlandthelike/archive/2010/03/26/cross-apply-ambiguity.aspx
Brad Schultz's comment on your blog entry summarises my views on this nicely.
March 26, 2010 at 10:42 pm
Use the ADSI provider:
http://www.lmgtfy.com/?q=sql+server+ADSI+%22linked+server%22
March 26, 2010 at 10:08 pm
Lynn Pettis (3/26/2010)
March 26, 2010 at 10:04 pm
There is a complete step-by-step guide here:
http://www.ideaexcursion.com/2009/02/25/howto-setup-sql-server-linked-server-to-mysql/
Be sure to follow the steps exactly, especially the part concerning the MSDASQL provider properties 😉
March 26, 2010 at 10:01 pm
Viewing 15 posts - 4,771 through 4,785 (of 8,416 total)