Viewing 15 posts - 106 through 120 (of 187 total)
Jesper (3/7/2006)
I assume you mean an initial value of 100 Try this:
declare @a table(ID varchar(10))
declare @b-2 table(PID varchar(10), ID varchar(10))
insert @a select...
February 6, 2008 at 8:55 am
Hi,
Thanks to both of you for the information, it has given me a better idea of how I can achieve what I am trying to do.
Regards
David
December 4, 2007 at 5:54 am
Hi Michael,
That's great, I am now able to skip the task!
Thanks
David
November 14, 2007 at 8:26 am
Hi Michael,
I thought I was roughly doing what you suggested in your earlier post. If my task fails the Failure precedence constraint skips the next task and is attached to...
November 13, 2007 at 8:26 am
Hi,
I've tried a variation on Michael's suggestion by using a Script Task and a variable. The code for the script task is:
Dim blnResetData As Boolean = System.Convert.ToBoolean(Dts.Variables("blnReset").Value)
...
November 13, 2007 at 7:05 am
Hi,
Did you control the constraints using a similar method to the one suggested by Michael in the earlier post?
November 13, 2007 at 4:31 am
Hi Andras,
I have an ASP.NET form that when submitted will execute a stored procedure which in turn creates a job. The job deletes and populates data from the database but...
November 12, 2007 at 8:35 am
That sounds like the way forward! I'll give this a go and let you know if there are any problems.
Thanks
November 12, 2007 at 6:50 am
Hi Andras,
The jobs are all other data related; I am distinguishing them from all other jobs by giving them a specific job category type. I did have a very, very...
November 12, 2007 at 4:25 am
Hi,
I managed to get the single column by creating a temp table and inserting all current jobs into the table. I then simply queried over the temp table:
INSERT INTO #xp_results
EXEC...
November 12, 2007 at 1:49 am
Hi Colin/Markus,
Thanks for your replies. I'm not really sure what to do because I have a partition of about 40Gb that is supposed to hold the backup file plus TLog...
September 30, 2007 at 12:40 pm
Hi CJ,
Dynamic SQL sorted the problem. In case you haven't had a chance to look yet the basics are as follows:
1. Create a variable to hold the statement (I used...
September 20, 2007 at 8:44 am
I've set all backups for a single user db to backup to a device i.e. log/diff and full all go to the same device. My idea was that when the...
September 17, 2007 at 7:35 am
Hi Crispin,
I get it now! Thanks for your help, much appreciated.
David
September 13, 2007 at 8:28 am
Viewing 15 posts - 106 through 120 (of 187 total)