Viewing 15 posts - 1,336 through 1,350 (of 1,535 total)
Have you closed and reopended QA since you moved master?
April 9, 2004 at 6:58 am
You could try http://www.halfpricecomputerbooks.com/ or look at the merchant listings on paypals website http://www.paypal.com/cgi-bin/webscr?cmd=_shop-cat-ext&loc=11720
April 9, 2004 at 5:29 am
There is a problem with your IF statement, you need to add BEGIN and END for the IF to work...try this....
Declare @CYCLE as int
select @CYCLE = CYCLE from CC_LOG_CYCLE
if @CYCLE...
April 9, 2004 at 5:25 am
I also believe that it would be the transaction being open answer. There does not appear to be any corroborating evidence to prove the listed correct answer is correct.
April 9, 2004 at 5:22 am
Looks like you are attempting to update the #jeff_combo table before putting any data in it. Try changing the update #jeff_combo to insert #jeff_combo
April 8, 2004 at 11:44 am
You could remove BUILTIN\ADMINISTRATORS from the SQL Server logins. Bear in mind that you had better not lose your sa password if you do this.
April 8, 2004 at 11:42 am
When you look at the task manager is the majority of the cpu used by SQL? And if so, try running a
SELECT * FROM MASTER..SYSPROCESSES ORDER BY CPU DESC
to get...
April 8, 2004 at 8:08 am
Have you been able to establish that the cpu utilization is being taken up by SQL?
April 8, 2004 at 7:28 am
Have you tried shelling out to a CMDExec and ftping the file? It's more of a pain, but at least you could log the steps involved to find the problem.
April 8, 2004 at 6:59 am
It could just be a timeout error waiting for the reponse from the ftp location. Are there particular times that it fails, and do these coincide with events on the...
April 8, 2004 at 6:36 am
When I did this I made a change to the user options so that all connections would be made with ArithAbort on as by default the connections were made with...
April 8, 2004 at 5:32 am
In Enterprise MAnager drill down to Database Maintenance Plans and it will show the plans. It also lists the db's afftected for each plan and the plans actions (ie. Backup...
April 7, 2004 at 10:46 am
I'd look to increase the cache size on the SAN as well.
April 7, 2004 at 10:43 am
Do you mean to select from both, or run a join?
SELECT A.COL1, B.COL2 FROM DB1.DBO.TABLEA A, DB2.DBO.TABLEB B
SELECT A.COL1, B.COL2 FROM DB1.DBO.TABLEA A INNER JOIN DB2.DBO.TABLEB B ON A.COL1 =...
April 7, 2004 at 9:15 am
Viewing 15 posts - 1,336 through 1,350 (of 1,535 total)