Viewing 15 posts - 8,071 through 8,085 (of 19,564 total)
calvo (10/27/2011)
Select all the jobs...
November 1, 2011 at 6:15 pm
Absolutely yes. Autoshrink and shrinking a database in general wreak havoc on a database.
November 1, 2011 at 6:11 pm
drew.georgopulos (10/25/2011)
Must you be sysadmin?
We have a programmer who has been experimenting with reporting services, but making this individual a server administrator is creating great...
November 1, 2011 at 6:10 pm
Making this person an Admin in SSRS does not require him to have DBO or sysadmin or server admin permissions in the database engine in SQL 2008.
If this is truly...
November 1, 2011 at 6:01 pm
An alternative could be to use sp_msforeachdb
November 1, 2011 at 5:55 pm
Jeff Moden (7/17/2009)
--_______________________________________________________________________________________________________________________
/**********************************************************************************************************************
Purpose:
Returns a single result set similar to sp_Space used...
November 1, 2011 at 5:53 pm
Try this tutorial.
http://lukehayler.com/2010/02/custom-visibility-toggling-ssrs-2008/
November 1, 2011 at 5:49 pm
Autoshrink will cause severe fragmentation in the indexes. Which would require you to defrag after each shrink. And that defrag is likely to cause the database to grow...
November 1, 2011 at 5:47 pm
jared-709193 (11/1/2011)
SQLRNNR (11/1/2011)
jared-709193 (11/1/2011)
GSquared (11/1/2011)
November 1, 2011 at 5:42 pm
jared-709193 (11/1/2011)
GSquared (11/1/2011)
November 1, 2011 at 2:24 pm
Gus - try this one
http://sqlblogcasts.com/blogs/tonyrogerson/archive/2006/08/17/948.aspx
November 1, 2011 at 2:14 pm
Gail is spot on with her answer.
November 1, 2011 at 2:01 pm
Try this
DECLARE @startgroup CHAR(1) = 'B'
;
WITH colorwheel (Groups,Colors,Numbers) AS (
Select 'A', 'RED', 1
UNION ALL
Select 'A', 'GREEN', 2
UNION ALL
Select 'A', 'BLUE', 3
UNION ALL
Select 'B', 'RED', 1
UNION ALL
Select 'B', 'YELLOW', 4
UNION ALL
Select...
November 1, 2011 at 11:51 am
Viewing 15 posts - 8,071 through 8,085 (of 19,564 total)