Viewing 15 posts - 286 through 300 (of 769 total)
Vedran Kesegic (6/2/2011)
That's because not all transactions can be commited.
If commit raises error and it...
June 2, 2011 at 11:28 am
sdvoranchik (6/1/2011)
June 1, 2011 at 11:42 am
Newbie Question
I was referenced this series by a post on the forums but after reading the highlights (not the article in full) I'm not sure this is the right...
May 31, 2011 at 1:15 pm
Many thanks to all who have replied with recomendations/links.
May 31, 2011 at 12:58 pm
sdvoranchik (5/13/2011)
May 31, 2011 at 12:49 pm
kooper2009 (5/11/2011)
I've downloaded the free trail of Stonefield Query. Awesome reporting tool that so easy work with. Had reports running in under an hour.
Kooper - I don't know if you...
May 31, 2011 at 12:48 pm
GSquared (5/10/2011)
As for SSRS, Report Builder has wizards for building...
May 31, 2011 at 12:45 pm
I just stumbled across how to get the total row count returned as a value in the results. Another user (cold Coffe) posted the suggestion to go with
Count(*)...
May 26, 2011 at 3:37 pm
Wayne,
I managed to work it out and get what I was looking for however I've got another RANKING functions question I was hoping you might shed some light on.
Is there...
May 26, 2011 at 3:16 pm
sandeep.cs3 (11/29/2010)
A very crisp and clean way to retrieve all the tables along with its row count
I looked at your rowcount sample and...
May 25, 2011 at 12:06 pm
Couple of items to note all of which assume a SQL 2005 platform as you say this code is for:
1) The call to DBCC UPDATEUSAGE in your ‘proc_records_per_database’ SP is...
May 25, 2011 at 12:00 pm
If you (like me) have a SQL 2005 instance with a DB set to level 8 compatability then the below which works for me may be of interest.
NOTE:...
May 20, 2011 at 10:47 am
WayneS (5/18/2011)
DECLARE @test-2 TABLE (SalesOrderId INT,
ModifiedDate DATETIME,
PRIMARY KEY CLUSTERED (SalesOrderID, ModifiedDate));
INSERT INTO @test-2 ( SalesOrderId, ModifiedDate )
VALUES ( 1, '2011-05-19 01:10:52'),
...
May 19, 2011 at 3:28 pm
Jan-155192 (10/25/2005)
By the way, I ended up with the following code. Thanks for helping.
Jan
CREATE TABLE #tmpADUsers
( employeeIdvarchar(10) NULL,
SAMAccountNamevarchar(255) NOT NULL,
emailvarchar(255) NULL)
GO
/* AD is limited to send 1000 records in one...
May 19, 2011 at 1:29 pm
homebrew01 (5/16/2011)
If you are running on a SQL 2000 instance, then you would need to...
May 16, 2011 at 12:55 pm
Viewing 15 posts - 286 through 300 (of 769 total)