Viewing 15 posts - 1 through 15 (of 15 total)
We resolved this issue with a SQL product from Red Gate. It does everything we need it to when moving objects from dev to prod.
January 21, 2005 at 9:00 am
Depending on the object you want to execute (jobs), there are many different ways to do this.
One is the manipulate the msdb..sysjob****** tables as needed to relaunch a job. We...
January 21, 2005 at 8:57 am
We had a similar issue. We ended up creating a control table to track the results. A process then can update, insert or delete rows as needed in this control table based...
January 21, 2005 at 8:40 am
I've seen similar errors in applications ad DTS packages, though not in any of our backup processes.
The general network errors I've seen has been pointed to a network bottleneck...
December 27, 2004 at 9:42 am
Do a search in your SQL help for "Transform Phase" and then read the entry "ActiveX Script Transformation Properties"
"Never give them a fish, never teach them to fish, but always...
November 5, 2004 at 7:11 am
Try this query.
select distinct o.name
from syscomments c , sysobjects o
where c.text like '%base%' and
c.id = o.id and
o.xtype = 'p'
October 15, 2004 at 10:23 am
Of course, the use of the data will decide the code you need to write. I put together some web pages to give this type of data to some of...
October 8, 2004 at 10:28 am
Let's see, this is from the hip, so to speak. Any you probably thought of this already too.
1) create a log table of object ids and object names and load...
October 6, 2004 at 3:04 pm
select max(colName) from table
where colName not in ( select max(colName) from table)
The subquery gets the max value and then the main query get the next value.
September 16, 2004 at 10:47 am
Here is the code I use to solve this. I use this on the hundreds of .asp pages I have written and it works everytime. Of course, you need to...
July 6, 2004 at 9:31 am
We used Arcserve for a while.
We got around this issue by backing up the databases to a file at a specific time. Then, when we were sure that all...
March 12, 2004 at 10:09 am
We address the issue by comments in the stored procedure. Then we wrote a web application to parse the comments and display them on our intranet. We included search engines...
November 12, 2003 at 9:16 am
Hi kwbonin,
I had a similar issue. I load about 90 source files nightly. However, instead of checking the tables after their are loaded, I check for the existance of the...
October 21, 2003 at 10:20 am
I have increased both timeouts in the ADO script. Sometimes it works and sometimes it does not. However, I start putting the following code in the top of page that...
September 5, 2003 at 9:30 am
I had the same problem a few months back. I could not find anything anywhere that I could use to fix the issue.
I did not want to 'hack' the...
August 7, 2003 at 9:44 am
Viewing 15 posts - 1 through 15 (of 15 total)