Viewing 15 posts - 1,261 through 1,275 (of 2,904 total)
No. What would be the purpose? Query Analyzer is so you can run commands against the database.
One solution. Change your permissions on the database to allow you...
February 10, 2006 at 8:34 am
You can input parameters two ways, one allows you to skip parameters and one doesn't.
CREATE PROCEDURE usp_myproc
@param1 CHAR(1) = 'a',
@param2 CHAR(1) = 'b',
@param3 CHAR(1)...
February 10, 2006 at 8:31 am
But that shouldn't give the error you got...if that is indeed the problem, you should have gotten an error stating something similar to "items in the select must be in...
February 9, 2006 at 11:14 am
Post the new script you created and we may be able to help you.
-SQLBill
February 9, 2006 at 7:57 am
Mark has a good point. In fact the RESTORE DATABASE command uses the WITH RECOVERY or WITH NORECOVERY option (default is WITH RECOVERY). So, it is possible to RESTORE...
February 8, 2006 at 8:04 am
One other thing to try...relooking at your first post, you indicate you are trying to set up an ODBC connection. You shouldn't have to do this on the server itself,...
February 6, 2006 at 8:32 am
Do you have another account to use?
Does anyone else have an account that has sysadmin priviliges in SQL Server?
It really sounds like BUILTIN/Administrator account was deleted. If so, you...
February 6, 2006 at 8:29 am
My first thought is that you want only one unique Customer name. But if so, how do you determine which ItemDescription they should have?
While you respond to that, this might...
February 3, 2006 at 1:01 pm
but only return one entry for each - for each what? Customer or ItemDescription?
How do you determine which result you should get? Can you provide us what the result...
February 3, 2006 at 12:59 pm
Yes, that is the TOP reason you will see that error.
-SQLBill
February 3, 2006 at 12:53 pm
Just for your records...here are good resources/directions for moving your system databases:
By Steve Jones
Moving TEMPDB:
http://www.sqlservercentral.com/columnists/sjones/atemporarymove.asp
Moving MASTER:
http://www.sqlservercentral.com/columnists/sjones/moveyourmaster.asp
Moving MSDB:
http://www.sqlservercentral.com/columnists/sjones/movingmsdb.asp
By Chris Hedgate
http://www.sqlservercentral.com/columnists/chedgate/movingsystemdatabasesachecklist.asp
-SQLBill
February 3, 2006 at 12:50 pm
Which database do you want to move? Moving system databases (especially MASTER) is not like moving user databases.
-SQLBill
February 3, 2006 at 12:45 pm
Does Administrator have an account in SQL Server?
Has the SQL Server login BUILTIN/Administrators been deleted or set to deny or anything like that?
-SQLBill
February 3, 2006 at 6:40 am
The problem usually isn't that the log CAN'T grow. The problem, instead, is that the log can't grow FAST or LARGE enough.
You set the growth to be 500MB. But...
February 3, 2006 at 6:34 am
And you are trying to connect from a remote computer, correct?
Is your computer on the same domain as the SQL Server computer?
-SQLbill
February 2, 2006 at 1:03 pm
Viewing 15 posts - 1,261 through 1,275 (of 2,904 total)