Viewing 15 posts - 6,706 through 6,720 (of 7,636 total)
mpescarmona (6/9/2008)
I use sql server 2000.
Then you should post this in a SQL 2000 forum.
June 9, 2008 at 11:12 am
You might also want to take a look at Adam Machanic's book Expert SQL server 2005: http://www.amazon.com/gp/product/159059729X/ref=cm_arms_pdp_dp
Especially chapter 9: "Spatial Data", which I think was written by HUGO KORNELIS (who...
June 9, 2008 at 10:05 am
Opus (6/9/2008)
Does my lack of sql knowledge make me appear to be a student?
No. Nor do I care if you are a student, in fact I still consider myself...
June 9, 2008 at 9:40 am
I have an idea on the shelf for an article/presentation called "The Top Ten Reasons that You Don't Already Use Service Broker".
Service Broker works great, once you've got it going,...
June 9, 2008 at 9:25 am
Michael Earl (6/9/2008)
Well, if they build a GUI similar to the one for Service Broker, it will be another great tool that most DBA's end up afraid of.
IS there a...
June 9, 2008 at 9:09 am
Like this:
UPDATE footable
SET fiscaldate = CAST(fiscalperiod+'01' as DateTime)
WHERE ...
June 9, 2008 at 9:01 am
If you look in Books OnLine, in the index for "attaching databases", you should find all of the information that you need.
June 9, 2008 at 6:49 am
I saw a lot of possible redundancy in the query plan, so it is possible that either some consolidation using WITH, or using Temp tables could work here.
June 9, 2008 at 6:45 am
stephensunil (6/6/2008)
M friends are telling that moving the DB log to a separater partition improves the performance. Is this true?
It can be, but only if the partition is on...
June 8, 2008 at 11:00 pm
Use PerfMon to measure the Disk response time during your tests on both Test and Production. If production is significantly slower, take the numbers to IBM to confirm that...
June 8, 2008 at 10:57 pm
Because .net would just make it harder. I would use .net if I needed to, bu so far this would be easier without it.
June 8, 2008 at 5:21 pm
You just need to have multiple CASE functions:
create function udf_processlog( @mode int ) returns table as
return (
SELECT
case @mode When 2 then colb Else...
June 8, 2008 at 12:18 pm
Viewing 15 posts - 6,706 through 6,720 (of 7,636 total)