Viewing 15 posts - 4,546 through 4,560 (of 6,677 total)
For cluster configurations, this is how I set things up:
S:\ drive contains system databases (all files, mdf and ldf)
G:\ drive contains user database data files
L:\ drive contains user database log...
September 28, 2009 at 5:49 pm
rhunt (9/28/2009)
Yeah, I think I'm going to back up the databases and pull a drive from the mirror...seems like the best approach.Thanks. RH
I have done the same thing on prior...
September 28, 2009 at 2:54 pm
The next thing to check is that the user for that connection has Execute privileges for the stored procedure (which includes access to that database).
September 28, 2009 at 2:43 pm
FWIW - when you get to SQL Server 2008 SP1 (and greater), you will have the ability to rollback a service pack. But, until then - to rollback you...
September 28, 2009 at 2:36 pm
Michael Valentine Jones (9/24/2009)
Lynn Pettis (9/24/2009)
select
...
September 28, 2009 at 2:28 pm
gmamata7 (9/28/2009)
September 28, 2009 at 1:31 pm
You can convert the CTE's into derived tables - are as Steve mentioned, create Views for each one. For example:
SELECT {column list from derived tables}
FROM (SELECT {list of columns...
September 28, 2009 at 10:15 am
Person is the schema the object belongs to.
September 27, 2009 at 11:11 am
Books Online is the documentation for SQL Server. You can get to it either by going to Help from SSMS, or:
Start | Programs | Microsoft SQL Server 2005 |...
September 26, 2009 at 5:46 pm
If you do not filter the update (use a where clause), SQL Server will update every single row in the table. I would recommend using the where clause because...
September 25, 2009 at 3:36 pm
espanolanthony (9/25/2009)
But that will create lot of fragmentation. and i think after that rebiulding idexes is not a good idea since that will take...
September 25, 2009 at 3:31 pm
;With budgets (account, total)
As (Select account
,sum(amount)
From dbo.Gl
Where accType...
September 25, 2009 at 3:24 pm
Seth,
Yes, that was part of what I was thinking - but, the original query did not have anything in the select and was trying to reference columns using the fully...
September 22, 2009 at 5:10 pm
That is good to know - glad I could help.
September 22, 2009 at 2:58 pm
I don't think the problem is the linked server, but the fact that you are not aliasing the tables. You can no longer use the full table reference for...
September 22, 2009 at 2:46 pm
Viewing 15 posts - 4,546 through 4,560 (of 6,677 total)