Viewing 15 posts - 1,051 through 1,065 (of 1,097 total)
Both servers are SQL 2000?
how did you set that character to one server?
October 4, 2002 at 3:39 pm
Remember that after instalation, sql let the SA password equal to null. Like they said, maybe you are loggin with mixed mode. Can you send the connection string?
October 1, 2002 at 4:06 pm
Try:
Declare @Select Varchar(500)
Set @Select='Select c1, c2, c3 from t1'
Create Table #temp
(id int identity (1,1) not null,
c1,
c2,
c3)
Insert #temp
EXEC (@Select)
Select * from #Temp
September 27, 2002 at 5:00 pm
Did you try diskperf -YD from command line? You will need to reboot the system to enable it.
September 27, 2002 at 4:17 pm
MAybe using the simple recovery model is not a good advice. More in a production db.
You should check why the log file is growing (with profiler maybe) and you could...
September 26, 2002 at 10:29 pm
If you run the script in http://www.sqlservercentral.com/scripts/scriptdetails.asp?scriptid=473
you will se that it runs dbcc showcontig for all indexes and it also writes a log to a file with osql.
Rate...
September 26, 2002 at 10:21 pm
What do you mean with the correct order?
September 25, 2002 at 5:55 pm
With explicits transaction, you must finish the transaction with either commit or rollback. If you don't finish the transaction, then it will remain open. I don't have sql here but...
September 25, 2002 at 5:53 pm
How are you running the backups? Did you check the active transaction?
I think we need more info before we try to give you a solution
September 25, 2002 at 4:38 pm
It does'n seems to be a SQL server problem. Anyting unusual in Exchange?
September 25, 2002 at 4:16 pm
Why don't you specified in the aplication the lock_timeout setting. Remember that you must handle the error in the aplication.
September 20, 2002 at 9:11 pm
In SQL 2000, you can delete in cascade. A trigger could be
Create Trigger T_Name
On Table_Name
For Delete
As
Delete OtherTableName
Where WhatEver= Whatever
You can change it. You will need to create more indexes, one...
September 20, 2002 at 9:05 pm
Hi,
Did you run any DBCC command in the DB or table? If you don't, why don't you try DBCC CheckDB or DBCC CheckTable.
Tell me...
September 20, 2002 at 8:54 pm
Viewing 15 posts - 1,051 through 1,065 (of 1,097 total)