Viewing 15 posts - 35,506 through 35,520 (of 49,552 total)
Please don't cross post. It just wastes peoples time and fragments replies. There's no partitioning on SQL 2000, so putting this in the SQL 2000 forum is inappropriate anyway
No replies...
Gail Shaw
Microsoft Certified Master: SQL Server, MVP, M.Sc (Comp Sci)
SQL In The Wild: Discussions on DB performance with occasional diversions into recoverability
December 4, 2009 at 12:34 am
Garadin (12/3/2009)
a quick google informs me that the backup data structure changed between versions.
Not just the backup file structure. The actual database file structure. It is not possible to...
Gail Shaw
Microsoft Certified Master: SQL Server, MVP, M.Sc (Comp Sci)
SQL In The Wild: Discussions on DB performance with occasional diversions into recoverability
December 4, 2009 at 12:33 am
Does the maintenance plan log or SQL error log show something more useful?
Gail Shaw
Microsoft Certified Master: SQL Server, MVP, M.Sc (Comp Sci)
SQL In The Wild: Discussions on DB performance with occasional diversions into recoverability
December 4, 2009 at 12:25 am
Please post table definitions, index definitions and execution plans, as per http://www.sqlservercentral.com/articles/SQLServerCentral/66909/
Root of your issue is parameter sniffing. The optimiser knows the value of the constant, it doesn't of the...
Gail Shaw
Microsoft Certified Master: SQL Server, MVP, M.Sc (Comp Sci)
SQL In The Wild: Discussions on DB performance with occasional diversions into recoverability
December 4, 2009 at 12:22 am
sashikanta.mishra (12/3/2009)
Gail Shaw
Microsoft Certified Master: SQL Server, MVP, M.Sc (Comp Sci)
SQL In The Wild: Discussions on DB performance with occasional diversions into recoverability
December 4, 2009 at 12:20 am
I didn't even notice that. Aliases are supposed to be applied after the select is evaluated (which is why you can't refer to an aliased column elsewhere in the SELECT...
Gail Shaw
Microsoft Certified Master: SQL Server, MVP, M.Sc (Comp Sci)
SQL In The Wild: Discussions on DB performance with occasional diversions into recoverability
December 3, 2009 at 10:49 am
Please post table definitions, sample data and desired output. Read this to see the best way to post this to get quick responses.
http://www.sqlservercentral.com/articles/Best+Practices/61537/
Gail Shaw
Microsoft Certified Master: SQL Server, MVP, M.Sc (Comp Sci)
SQL In The Wild: Discussions on DB performance with occasional diversions into recoverability
December 3, 2009 at 9:30 am
Why do you want to change the name of a file of one of the system databases?
p.s. Please in future ask new questions in a new thread, rather than resurrecting...
Gail Shaw
Microsoft Certified Master: SQL Server, MVP, M.Sc (Comp Sci)
SQL In The Wild: Discussions on DB performance with occasional diversions into recoverability
December 3, 2009 at 9:15 am
Robert Frasca (12/3/2009)
That works fine so you're right, there's something subtle but I can't pinpoint it.
Weird.
Take out the three extra column that I added for testing, see if it still...
Gail Shaw
Microsoft Certified Master: SQL Server, MVP, M.Sc (Comp Sci)
SQL In The Wild: Discussions on DB performance with occasional diversions into recoverability
December 3, 2009 at 9:11 am
ajay.uce (12/3/2009)
What is Mirroring in SQL server 2005..How can i configure that in SQL server 2005 ?What is the difference between Log shipping and Mirroring ?
Is google down again?
Gail Shaw
Microsoft Certified Master: SQL Server, MVP, M.Sc (Comp Sci)
SQL In The Wild: Discussions on DB performance with occasional diversions into recoverability
December 3, 2009 at 8:47 am
Most of the select statement is a non-issue.
Run this, see what it produces. There's got to be something subtly wrong with the values somewhere.
SELECT
ser.Patient_Primary_Policy_Carrier_ID,
'[' + ISNULL(cval1.Control_Value1,'') + ']'
cval1.Control_Value1,
CASE
WHEN ser.Patient_Primary_Policy_Carrier_ID =...
Gail Shaw
Microsoft Certified Master: SQL Server, MVP, M.Sc (Comp Sci)
SQL In The Wild: Discussions on DB performance with occasional diversions into recoverability
December 3, 2009 at 8:42 am
Kwisatz78 (12/3/2009)
Gail Shaw
Microsoft Certified Master: SQL Server, MVP, M.Sc (Comp Sci)
SQL In The Wild: Discussions on DB performance with occasional diversions into recoverability
December 3, 2009 at 8:26 am
luckysql.kinda (12/3/2009)
Do you mean I have to install sql server again if I don't have master DB backup.
No. The SQL installer can, if run with specific parameters, rebuild the master...
Gail Shaw
Microsoft Certified Master: SQL Server, MVP, M.Sc (Comp Sci)
SQL In The Wild: Discussions on DB performance with occasional diversions into recoverability
December 3, 2009 at 2:55 am
atramard (12/3/2009)
it look like i am gone have to limit those log growth....
Why?
What you should have is alerts that warn you when the disk is getting full (80% as...
Gail Shaw
Microsoft Certified Master: SQL Server, MVP, M.Sc (Comp Sci)
SQL In The Wild: Discussions on DB performance with occasional diversions into recoverability
December 3, 2009 at 2:53 am
Kwisatz78 (12/3/2009)
Gail Shaw
Microsoft Certified Master: SQL Server, MVP, M.Sc (Comp Sci)
SQL In The Wild: Discussions on DB performance with occasional diversions into recoverability
December 3, 2009 at 2:49 am
Viewing 15 posts - 35,506 through 35,520 (of 49,552 total)