Viewing 15 posts - 481 through 495 (of 2,904 total)
What do you mean by this:
There is already one registered instance running on the same machine(only client connectivity).
Do you mean that you have the client tools installed and...
April 9, 2007 at 4:36 pm
I would recheck your connection...SQL Server says it can't see the remote drive. If it is even a momentary drop of the connect, it's gone as far as SQL...
April 9, 2007 at 2:09 pm
Yeah, I know I got it backwards.
I guess I was typing without thinking....too busy of a day. Thanks for pointing it out and correcting me.
-SQLBill
April 9, 2007 at 2:02 pm
You don't say what performance problem you are having, so I'll take a stab at this...
You are trying to accomplish two things with the SELECT statement.
1. Get DISTINCT rows.
2. Manipulate...
April 4, 2007 at 4:53 pm
BTW- this is one reason it's not always a good idea to put the system databases on a SAN.
-SQLBill
April 4, 2007 at 4:41 pm
Where does it say anything about PERMISSIONS??? It says ACCESS IS DENIED. Totally different.
Causes:
1. the SAN is not available.
This can happen on a reboot where...
April 4, 2007 at 4:40 pm
Enterprise Manager and Management Studio GUIs sometimes get out of 'whack' from the actual information. Try this....
Open Query Analyzer
Run DBCC UPDATEUSAGE('tempdb')
When it finishes, go back to Management Studio, click...
April 4, 2007 at 4:35 pm
Since we don't have your data, it's hard to determine why it's taking a long time. Put the query into Query Analyzer then, on the menu bar, click on...
April 4, 2007 at 4:32 pm
The database will reside at the customer site - access to logins/users will not be available to us.
What is to stop the customer from accessing the database directly? For example,...
April 4, 2007 at 3:17 pm
Steve told you about the JOINs and ONs, but you still do NOT have the ONs after their JOINs.
FROM Inventory AS I
JOIN Block AS B
JOIN Phase AS P
JOIN ProjectSub AS...
April 4, 2007 at 3:14 pm
SELECT statements do not cause activity in the transaction log (it's not a transaction).
INSERT statements do cause activity in the transaction log (it is a transaction).
So, SERVER3 is being used...
April 4, 2007 at 3:10 pm
Is there something else happening on the database at the same time that might be blocking the update?
-SQLBill
April 4, 2007 at 3:07 pm
Just run sp_dboptions 'databasename'. Since you aren't setting anything, it will return all the current settings.
If you add the second parameter, it will return the setting for just that...
April 3, 2007 at 4:30 pm
Open Enterprise Manager. Expand until you see your database. Right click on it. Select Properties. Go to the tab for the Transaction Log. How many files are listed?
-SQLBill
April 3, 2007 at 2:04 pm
My understanding is that if you have SQL 2000 client tools and you install SQL 2005 client tools it also upgrades the SQL 2000 stuff, especially the DTS tools. ...
April 3, 2007 at 1:59 pm
Viewing 15 posts - 481 through 495 (of 2,904 total)