Viewing 15 posts - 496 through 510 (of 3,011 total)
chumphrey 12211 (8/17/2012)
August 17, 2012 at 2:53 pm
Can you explain why you didn't just create a new filegroup with with the data file for that filegroup on the drive where you have the ARCH database and move...
August 15, 2012 at 3:21 pm
How to: Upgrade to SQL Server 2008 R2
http://msdn.microsoft.com/en-us/library/ms144267(v=sql.105).aspx
August 15, 2012 at 1:19 pm
davidandrews13 (8/10/2012)
http://msdn.microsoft.com/en-us/library/ms174979(v=sql.105).aspx
it states:
Allowing an extra comma after the last column definition makes the code easier to generate and maintain because all lines...
August 13, 2012 at 3:46 pm
There is a lot to be said for just ignoring bad advice and doing things your own way, especially since you would be the one doing the recovery if things...
August 13, 2012 at 1:55 pm
Fly Girl (8/10/2012)
Excellent! Thanks so much for sharing the benefit of your experience. I will plan to do some tinkering this weekend and set the snapshot option.
Be aware that you...
August 10, 2012 at 12:10 pm
Fly Girl (8/10/2012)
Interesting idea on the Read_Committed_Shapshot. The documentation says that 'most' applications can work with it without changes... Dun't, dun't duh... That and the issue that...
August 10, 2012 at 10:45 am
shamshad.ali (8/9/2012)
Currently we are using SQL Server 2008 R2 on all environments (Client, Production, testing, developmenmt), but using SQL Server Reports developed in 2005 version. I have been assigned a...
August 10, 2012 at 8:21 am
I agree on the having a different account of each SQL Server with a long random password, but I think you need to store the password. I have seen...
August 10, 2012 at 8:05 am
Fly Girl (8/7/2012)
...
6, 7 & 9. A private consulting company had just done a review of db performance. From what they left from their traces & analysis the main culprit...
August 10, 2012 at 7:24 am
FunkyDexter (8/9/2012)
August 9, 2012 at 9:45 am
You wouldn't be able to use integrated security for access to the SQL Server, and the SQL Server would not be able to use a domain service account. There...
August 8, 2012 at 3:45 pm
laurie-789651 (8/7/2012)
I think this will work:
ALTER PROCEDURE [dbo].[TestSPR]
@P1 int
AS
BEGIN
SET NOCOUNT ON;
DECLARE @MyExec VARCHAR(100)
SET @MyExec = 'Select * from...
August 7, 2012 at 10:22 am
The declaration of @MyExec goes out of scope inside your EXEC (@MyExec).
If you want to pass variables to/from a dynamic SQL batch, use SP_EXECUTESQL.
August 7, 2012 at 10:11 am
"..Their support wrote back to me with a script to add some indexes on some columns. Of course, the columns weren't in this particular query, but hey, adding an index...
August 6, 2012 at 2:17 pm
Viewing 15 posts - 496 through 510 (of 3,011 total)