Viewing 15 posts - 4,471 through 4,485 (of 5,394 total)
naresh_ee (4/9/2010)
April 9, 2010 at 3:47 am
Outstanding article, Wayne. I must have missed it when it was first published. Nice job.
Your article raised a doubt in my mind. You write
Temporary tables can have named constraints, indexes,...
April 9, 2010 at 3:19 am
There must be something that makes your log grow. Try tracing the activity with profiler, maybe you'll find the issue there.
April 9, 2010 at 2:44 am
If it keeps growing, this means that your database is heavily hit by writes. You probably need to take log backups more frequently.
Growing the file by 1 Mb could lead...
April 9, 2010 at 1:22 am
You're welcome.
Glad I could help.
Gianluca
April 9, 2010 at 1:03 am
CirquedeSQLeil (4/8/2010)
The Dixie Flatline (4/8/2010)
I refuse to dignify that with a comment that I have edited to make Lynn curious.
I won't dignify your lack of dignification with a curious dignifying...
April 8, 2010 at 10:31 am
There are free export tools available, like this one:
http://www.codeproject.com/KB/database/DTS_Export.aspx
I'm sure there are others around, try to google for them. Finding this one took me 1 minute.
April 8, 2010 at 10:04 am
You could pick the port currently in use by the instance.
If you want to know the port numbers currently in use by the system, use this:
NETSTAT -anp TCP
April 8, 2010 at 7:44 am
Edit: Removed to make Lynn curious. 😀
April 8, 2010 at 7:30 am
Topic of the day: commutative posts. :w00t:
April 8, 2010 at 7:21 am
Jeff Moden (4/8/2010)
Gianluca Sartori (4/8/2010)
Looking at the execution plans, it should not be faster.
Heh... I've run into that many, many times. Perhaps an article titled "The execution plan lies"....
April 8, 2010 at 7:14 am
This should do the trick:
SELECT docID, projid, typeid, ver
FROM #DOCS AS A
WHERE ver = (
SELECT TOP 1 ver
FROM #DOCS AS B
WHERE A.projid = B.projid
AND A.typeid = B.typeid
ORDER BY CASE...
April 8, 2010 at 7:01 am
Oh, I see. Sorry, I misunderstood your question.:blush:
Well, I don't know if there's a best practice for choosing a port number. I can only tell you that the port numbers...
April 8, 2010 at 6:54 am
Lynn Pettis (4/8/2010)
April 8, 2010 at 6:47 am
When your reader app is blocked, open the Activity Monitor and try to identify the connection used by the writer app.
I don't remember if SQL 2005 SSMS Activity Monitor displays...
April 8, 2010 at 6:39 am
Viewing 15 posts - 4,471 through 4,485 (of 5,394 total)