Viewing 15 posts - 631 through 645 (of 2,387 total)
See reply inline.
begin tran
truncate table cs_ord
go --- why do you need go here?
insert into cs_order_amts_all(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 8:16 am
Can you show your codes here?
January 16, 2004 at 7:17 am
It seems the SQL Server Agent account has to have permissions to access foxpro database like "alan".
January 16, 2004 at 7:16 am
" I'm really struggling with this one. It appears to be load related, in that it will occur at times of heavy usage. "
I agree with you. It is realted...
January 16, 2004 at 7:12 am
What privilege the ".\administrator" has in SQL Server? SQL Server Agent is running under local system account that can't access the FoxPro data which is in client machine. You have...
January 16, 2004 at 6:59 am
No idea why your delete statement generates such complex execution plan.
Here is my example.
delete from dat_audit where id = 1
|--Table Delete(OBJECT[INITLC].[dbo].[DAT_AUDIT]))
|--Top(ROWCOUNT est...
January 15, 2004 at 6:14 pm
"
January 15, 2004 at 5:57 pm
http://support.microsoft.com/default.aspx?scid=kb;en-us;305711&Product=sql2k
Click Logins --> Refresh and try again.
January 15, 2004 at 1:54 pm
Is Oracle client network component installed in SQL Server?
http://support.microsoft.com/default.aspx?scid=kb;en-us;280106&Product=sql2k
January 15, 2004 at 1:18 pm
What data type of retailmemberid has? Check the execution plan to ensure index is used.
January 15, 2004 at 12:53 pm
Good to know the simpliest way to do it.
January 15, 2004 at 10:43 am
You can run profiler to trace it.
Or create a history table and insert a record each time your sp is executed.
January 15, 2004 at 9:53 am
It requires service to restart before taking effect.
January 15, 2004 at 7:23 am
select @@version
January 15, 2004 at 7:20 am
What is the version of xpstart.dll? What is your SQL Server version and service pack version?
January 15, 2004 at 7:19 am
Viewing 15 posts - 631 through 645 (of 2,387 total)