Viewing 15 posts - 1,861 through 1,875 (of 2,043 total)
Since there are only 4 possible diagnostic codes
You could create a view using left joins
select groupedvid.v_id,
from
(SELECT DISTINCT v_id
FROM dbo.mydiagnose mydiagnose
) AS groupedvid
INNER JOIN
(select l_id,c_id,v_id,createdate,moddate
FROM dbo.mydiagnose mydiagnose
) AS visitinfo
on...
October 27, 2005 at 2:21 pm
odd issue
What version of query analyzer are you using? (see Help->About)
sql server 2000 sp1 mentions a fix
Query Analyzer Hangs After You Drag && Drop Files Into the Query Editor and...
October 27, 2005 at 1:59 pm
60% of the improvement can normally found in the application itself,how it handles its data and general design of your database (3NF?)
If possible, check what has changed in the application....
October 27, 2005 at 1:48 pm
Is there any parallellism in the query plans?
If the cpu is sleeping it could be an I/O issue.
just a sidequestion: why don't you name the object owner?
October 27, 2005 at 12:21 pm
something from the books online (pivot table)
SELECT togroupby,
SUM(CASE Group WHEN 1 THEN Amount ELSE 0 END) AS A,
SUM(CASE Group WHEN 2 THEN Amount ELSE 0 END) AS...
October 26, 2005 at 12:18 pm
Is the server OS windows 2003 or client OS windows XP SP2?
October 25, 2005 at 10:36 am
sure sp_blockinglocks is written alright? (can't find it in the books online)
October 25, 2005 at 10:29 am
probably
http://support.microsoft.com/default.aspx?scid=KB;EN-US;Q237398&
The "Cannot start transaction while in firehose mode" error occurs when an OLE-DB provider attempts to perform a join transaction with results pending and while not in an...
October 25, 2005 at 10:03 am
With enterprise manager you can create scheduled jobs for sql agent.
(management->Sql Agent->Jobs->Create)
Sql Agent then runs it at the specified time.
October 24, 2005 at 10:01 am
Perhaps this:
http://www.dbforums.com/archive/index.php/t-958605.html
Have you tried uninstalling and than reinstalling the client components tools of sql server?
October 24, 2005 at 9:58 am
You'll need a third party program.
Ortherwise you could try to script out all views, stored procedures and run a text-difference analyzer on it.
October 24, 2005 at 9:48 am
See DENY in the books online to prevent insert rights for a specific user.
October 24, 2005 at 7:11 am
October 24, 2005 at 7:02 am
Does any ends of the distributed query involves an windows 2003 OS or XP SP2 ?
October 24, 2005 at 6:59 am
Viewing 15 posts - 1,861 through 1,875 (of 2,043 total)