Viewing 15 posts - 421 through 435 (of 599 total)
Here's an article on deadlocks for you:
http://msdn2.microsoft.com/en-us/ms191242.aspx
You should also check out sql-server-performance,com
No direct information on converting from dblib to ADO, but to me that would be a no-brainer ({;ve...
June 19, 2006 at 1:25 pm
Considering we're talking about a VLDB that processes terabytes of data daily, even a "slight" improvement is a Good Thing.
June 15, 2006 at 8:26 pm
I've not worked with this before so can't help you directly, but you might want to try here:
http://forums.microsoft.com/MSDN/ShowForum.aspx?ForumID=97&SiteID=1
June 15, 2006 at 11:33 am
Thanks for the feedback. Sometimes I just need a sanity check.
June 15, 2006 at 10:43 am
Amen.
I've done application development and I've done DB design / SQL development. I've had projects where I've done it all and projects where I was responsible for exclusively one or the other. There is a...
June 14, 2006 at 4:27 pm
Now this:
http://dsc.discovery.com/news/briefs/20060605/computerculture_tec.html?source=rss
is a project I'd love to be involved in.
June 14, 2006 at 4:17 pm
1) go bash those developers and teach them how to code properly.
2) talk to your / their manager about this and get them...
June 14, 2006 at 2:41 pm
select
[year],
uniqueid as b
from geoff...test1
where uniqueid > 340000
order by uniqueid
June 13, 2006 at 8:11 am
From what you've posted, I'm guessing
SELECT DISTINCT
org, acct, class, prod, note, htmltext
FROM table
ORDER BY acct DESC, prod
would work.
June 12, 2006 at 1:16 pm
Awesome information, guys!
Many, many thanks.
Just so you know, given the query and what it was doing, I changed it to DISTINCT. If nothing else, it will help the developer...
June 10, 2006 at 5:53 pm
Yanno, I thought it might be something like that. So, I took a look at the query execution plan for each and they are exactly the same.
Odd.
June 9, 2006 at 1:04 pm
Relationships do enhance the design process. By thinking them through, I wind up with a better DB design.
Established relationships (FK's especially) also help those that come after you. Try attempting to...
June 9, 2006 at 9:56 am
This:
IF @ProductName = null
Should read:
IF @ProductName is NULL
June 8, 2006 at 6:29 pm
DECLARE
@mycheck int
IF @mon=1
set @mycheck = 216
else if @mon=2
set @mycheck = 244
.....
where
....
dateDiff(day,v.dateService,@myDate) < @mycheck
June 8, 2006 at 11:27 am
June 8, 2006 at 10:55 am
Viewing 15 posts - 421 through 435 (of 599 total)