Viewing 15 posts - 45,166 through 45,180 (of 49,552 total)
Update all statistics after the upgrade to 2005. The 2005 optimiser doesn't much like the 2000 style statistics.
Also, as far as I know, there is no 64-bit version of dtsrun,...
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
August 11, 2008 at 1:24 am
As Jeff said, not possible.
I'm curious. Why would you want to do a select with an UPD lock and then immediately commit the transaction? You're not achieving anything as 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
August 11, 2008 at 1:21 am
Abhijeet Dighe (8/11/2008)
But its not free
You're right, it's not. It is however very worth the price. I seriously doubt you are going to find a free tool for this.
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
August 11, 2008 at 1:21 am
Just be aware that the info is only in the log until the next checkpoint (if on simple recovery) or log backup (on full or bulk-logged recovery)
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
August 11, 2008 at 1:18 am
Use the TABLERESULTS option of showcontig
Something like
INSERT INTO ContigCheckTable
EXECUTE ('DBCC SHOWCONTIG WITH TABLERESULTS, ALL_INDEXES')
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
August 11, 2008 at 1:17 am
Not sure about the timeout settings (I'm not a .net developer), but timeout in general means something took too long. You can either change the timeout settings or you can...
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
August 11, 2008 at 1:12 am
Task manager's a bad place to look at memory for SQL. Rather use Perfmon and look at things like the process's working set or the target and total server memory...
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
August 11, 2008 at 1:11 am
None that I've heard of. Intellisense is a very hard thing to do in T-SQL because of the language format.
In fact, the only ones I know are SQLPrompt, SQL 2008's...
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
August 11, 2008 at 1:06 am
A CTE is in essence a temporary view. It's a named query that only exists for a single query after its defined. It simplifies writing queries with complex subqueries that...
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
August 10, 2008 at 11:25 am
Check that the front end is inserting into the database you think it is. It's an easy mistake to make.
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
August 10, 2008 at 11:23 am
I'm not deriding you. Bear in mind that we all have our own jobs and our own lives. We don't get paid to answer questions here. Be patient.
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
August 10, 2008 at 10:32 am
You could try answering questions here or on one of the other SQL forums or newsgroups. Even if you don't post the answer, see if you can work out what...
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
August 10, 2008 at 1:58 am
Please stop spamming bump requests all over the forum. We saw your question the first time. No need to keep nagging.
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
August 10, 2008 at 1:47 am
hello our Experts where are you?
Relaxing away from computers I would imagine, seeing as it is the weekend.
Be patient. If you want someone at your beck and call 24x7, hire...
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
August 10, 2008 at 1:39 am
Thanks. I'll test it out sometime then. It's another of those grey areas where I wouldn't be surprised if CLR is faster, however I'm not going to put money on...
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
August 10, 2008 at 1:32 am
Viewing 15 posts - 45,166 through 45,180 (of 49,552 total)