Viewing 15 posts - 616 through 630 (of 2,387 total)
Looks like you need second instance.
January 22, 2004 at 10:14 am
To access different databases in same instance, you just need to use qualified name like databasename.owner.tablename.
For example, select * from db1.dbo.table1 T1 inner join db2.dbo.table2 T2 on T1.id = T2.id
January 22, 2004 at 7:37 am
You may not even need JDBC for SQL Server in Windwos platform when running ColdFusion MX. ColdFusion MX comes with its own ODBC server which can be used to communicate...
January 20, 2004 at 3:02 pm
Have any linked servers configured to access this server? Any scheduled Window tasks? (Control panel --> Scheduled Tasks)
January 19, 2004 at 12:42 pm
Can you post the result of "select loginname from syslogins" here?
January 19, 2004 at 12:20 pm
Yes. It looks like.
January 19, 2004 at 12:14 pm
Do you run clustered SQL Server or non-clustered SQL Server? Any schedule jobs fail?
January 19, 2004 at 12:12 pm
Start Profiler (Event : Security Audit - Audit Login Failed) to trace which application is tring to access your server with 'sa' login.
January 19, 2004 at 11:41 am
xp_readerrorlog is one of function of xpstar.dll which run after the startup procedure.
January 19, 2004 at 11:31 am
"2000.80.194.0 is the version of xpstar.dll"
It looks you don't have service pack. Try to install sp3a to see whether your problem can be resolved.
January 19, 2004 at 7:09 am
Many ways. One is "osql.exe -L".
January 16, 2004 at 3:37 pm
January 16, 2004 at 2:46 pm
January 16, 2004 at 11:31 am
Do you use Microsoft SQL Server Notification Services to sent out E-mail notifications?
January 16, 2004 at 11:30 am
begin tran
truncate table cs_ord
go --- You need remove 'go' here from your codes.
insert into cs_ord(Order_Num, Amount)
SELECT T1.SO as Order_Num,
CASE WHEN (SUM (T1.C_CHORHI_CHANGE_NUM = '0')
THEN (T1.AMT)
ELSE (T1.CHANGE_AMT)
END...
January 16, 2004 at 9:04 am
Viewing 15 posts - 616 through 630 (of 2,387 total)