Viewing 15 posts - 46 through 60 (of 254 total)
Thanks for the help. We did get things going again. We started over (deleted C drive and re-restored it). To avoid the storage space error we unfortunately did two things...
March 3, 2005 at 8:43 am
That is what I thought. We uninstalled SQL Server, rebooted, and tried to re-install it but the install fails with the same Microsoft Management Console error that we got with...
March 3, 2005 at 6:57 am
Let me simplify the problem for you.
update contact2
set udefcon =
( SELECT 1
FROM
contact2, contact1
WHERE contact1.accountno = contact2.accountno)
The above should still fail with the same error. The reason...
March 2, 2005 at 4:26 pm
Same question, different context. Our QA box had a duo drive failure (both sides of a mirror) and we had to replace the drives. We installed a new OS to...
March 2, 2005 at 4:13 pm
Actually, his complaint was that it didn't interleave the query with the results. He had already tried that setting unsatisfactorily.
March 2, 2005 at 11:18 am
I can't see your hard drive, so the image doesn't show, but the screen does take a few seconds to fill in (about 6 seconds for me). What I see...
March 2, 2005 at 9:46 am
One thing I figured out is that you can use STATISTICS PROFILE to interleave the access plan in text form. You would, of course, have to have Query Analyzer in...
March 2, 2005 at 9:29 am
You need to left click on the database name first before the View menu appears. The reason is that it is not an action, but a view setting for the...
March 2, 2005 at 8:50 am
You may also try the following. It's geared more for change management, but I think it could possibly accomodate your needs. I simply found it doing a quick Google search,...
March 1, 2005 at 8:01 am
This is due to implicite type conversion. The order by expression has to resolve into a single "column" of some type just as if it were in the select portion....
February 28, 2005 at 2:15 pm
I have a couple queries that I just got done rewriting that had the same issues. The original was all Dynamic SQL (dynamic columns, joins, where clause, and order by),...
February 28, 2005 at 7:42 am
It seems to me that this would work best as a join.
SELECT CRM_MTL.Whatever
, RIGHT(Amount1.CM_SADE,5) - RIGHT(Amount2.CM_SADE,5) AS Difference
, ( RIGHT(Amount1.CM_SADE,5) - RIGHT(Amount2.CM_SADE,5)) / RIGHT(Amount1.CM_SADE,5) AS Percentage
FROM CRM_MTL
LEFT JOIN...
February 28, 2005 at 7:26 am
First of all, I suspect that Bob has the correct solution, that being to deal with presentation in the presentation layer. If you really need the rows inverted you could...
January 11, 2005 at 6:25 am
Databases can be configured to automatically shut down when all connections to it have been dropped. Based on your first post it sounds like the BDECO database is configured in...
November 2, 2004 at 7:29 am
I can't really help you with a primer. My knowledge is from a wide variety of sources over time.
First, keep the PK composite or not. Performance tweaks should never compromise data...
October 23, 2004 at 1:42 pm
Viewing 15 posts - 46 through 60 (of 254 total)