Viewing 15 posts - 2,236 through 2,250 (of 2,486 total)
Nothing is impossible, sometimes highly unlikely, other times very convoluted, but never impossible.
We also have Progress on Unix and SQL Server on Windows. We have an ODBC connection to the...
September 3, 2003 at 2:05 am
You could start by setting up a few traces. Take a look at "Monitoring with SQL Profiler" in Books Online.
Also, if you setup the the trace to run on...
September 3, 2003 at 1:47 am
Just to add steven_white40's reply, if you setup a scheduled task, make sure you disable, or remove, the schedule.
Hope this helps
Phill Carter
--------------------
Colt 45 - the original point and click interface...
September 3, 2003 at 1:26 am
We probably could but the Progress Server doesn't use security, and we don't have control over it either.
We have to manage a read-only connection from our end.
Hope this helps
Phill Carter
--------------------
Colt...
September 3, 2003 at 1:21 am
To have Progress access SQL Server databases, I believe you need to run the MS SQL Server Dataserver on the Progress Server.
If you have a stable ODBC connection to the...
September 2, 2003 at 8:19 am
Ok, I did misunderstand
Based on what you have now, I'd add another global variable (maybe glbv_Counter) to act as a counter for your position in the...
September 2, 2003 at 7:10 am
Take a look at the following,
http://www.sqlservercentral.com/columnists/bknight/xpfileexist.asp
Hope this helps
Phill Carter
--------------------
Colt 45 - the original point and click interface
September 2, 2003 at 6:56 am
Maybe I'm a bit confused, but does the second ActiveX script run before the Datapump task? If so, then you probably just need a third ActiveX script after the Datapump...
September 1, 2003 at 5:00 pm
Nice little script.
We have something similiar, only the date & time are appended to the filename so the logs don't get overwritten. They also get an extension of .txt which...
August 31, 2003 at 7:37 pm
You could also do
quote:
SELECT sObj.nameFROM dbo.sysobjects sObj
INNER JOIN dbo.syscomments sComm
ON sObj.id = sComm.id
WHERE sComm.text LIKE '%tblServerlist%'
AND sObj.type = 'P'
August 31, 2003 at 5:47 pm
From the look of your code, basically all you are doing is checking for the existence of a directory.
Why not use xp_fileexist instead of shelling out to a command prompt?
Hope...
August 31, 2003 at 5:28 pm
Just echoing Steve's comments. Save yourself a possible nightmare down the road.
In a previous job, we had Arcserve 6 SQL Agent. After working flawlessly for about 8 months it...
August 31, 2003 at 5:21 pm
Are you sure you have 'On Success' not 'On Completion'?
With On Success it will wait for both tasks.
Hope this helps
Phill Carter
--------------------
Colt 45 - the original point and click interface
August 28, 2003 at 7:21 am
With a setting of 0, SQL will dynamically allocate locks as needed up to approx 40% of the memory SQL Server currently has allocated to it. If it needs more...
August 28, 2003 at 7:18 am
Have a look at the State property, that might be what you're after.
Hope this helps
Phill Carter
--------------------
Colt 45 - the original point and click interface
Edited by -...
August 28, 2003 at 7:05 am
Viewing 15 posts - 2,236 through 2,250 (of 2,486 total)