Viewing 15 posts - 1,036 through 1,050 (of 2,052 total)
Vacation is vacation. You could be anywhere on the planet, with an empty battery.
June 15, 2008 at 1:03 pm
Is the exe on a local drive (E:...)
or a network drive \\otherserver\myexe (not accessable by local machine)?
June 15, 2008 at 5:14 am
You could create views/storedprocedures on DB2 for the data you need to fetch from DB3.
June 14, 2008 at 12:34 pm
Error handling in sql 2000 is a tricky process.
You have to evaluate after each statement. Some errors immediately abort the batch.
statement
/*saving the error*/
@myvar=@@error
if @myvar<>0
BEGIN
doerrorhandling
END
statement
@myvar=@@error
if @myvar<>0
BEGIN
doerrorhandling
END
Inside the...
June 14, 2008 at 12:30 pm
Perhaps a security issue of sqlagent. What is its windowsaccount? Local machine, ...
June 14, 2008 at 12:22 pm
Is the update being done with .Update (can be slow) or with an update-sql statement?
June 11, 2008 at 11:10 am
Adding some code to quickly scroll to the bottom and back up?
June 10, 2008 at 1:06 pm
It is affected by the number of records.
Do you have a covering index on (stime,savg) to avoid bookmark lookups?
June 7, 2008 at 6:04 am
High CPU/memory usage can also be caused by massive full table scans.
June 5, 2008 at 1:50 pm
SP4:
+bugfixes
http://support.microsoft.com/kb/888799
+better corruption/blocking detection
-has an intial bug with AWE (additional hotfixes needed)
-changes index seeks (needs exact typing char(20)vs char(20) etc, to eliminate some false results)
There is also a cumulative post SP4...
June 5, 2008 at 1:48 pm
the tables"inserted" and "deleted" only exist inside the trigger.
June 5, 2008 at 1:31 pm
Your code seems to work correctly.
I've tested your code (in tempdb) with
DECLARE @ProjectID int
DECLARE @TimeEntryStart datetime
DECLARE @TimeEntryEnd datetime
DECLARE @TimeEntryUserID int
SET @ProjectID=35
SET @TimeEntryStart=convert(datetime,'2008-04-14 02:30:00.000')/*RETURNS 1*/
SET @TimeEntryStart=getdate()/*returns NULL*/
SET @TimeEntryEnd=NULL
SET @TimeEntryUserID=1035
SELECT [tempdb].[dbo].[f_TimeEntryOverlap]
(@ProjectID, @TimeEntryStart,...
June 5, 2008 at 1:30 pm
I guess so. You can find sp_who2 in the master database and it is marked as system.
June 4, 2008 at 2:03 pm
try Me.TabControlRiskForm.Pages(1).enabled = false
instead of
Me.TabControlRiskForm.Pages(1).Locked = True
June 4, 2008 at 1:47 pm
Viewing 15 posts - 1,036 through 1,050 (of 2,052 total)