Viewing 15 posts - 421 through 435 (of 606 total)
I tried once myself but could not get it to run.
See: http://www.sqldts.com/default.aspx?210
Sorry cannot help any further.
September 14, 2004 at 6:46 am
This script checks for failed jobs:
========================================
use master
SET NOCOUNT ON --- speed up operation
GO
/* Failed jobs report. This query lists the name of all jobs that failed in their last attempt:...
September 13, 2004 at 2:46 pm
I have a query that runs against system tables to list all failed packages last time run. I will post it to you tomorrow as it is at home.
You can...
September 13, 2004 at 10:14 am
Why do you not just add a task at the end of the job that:
1. Selects all records from table a where aid not in table b.id.
2. Then export the...
September 13, 2004 at 10:11 am
Apologies. I don't really get your meaning.
September 13, 2004 at 9:53 am
Chris.
Let me know if you still want to do this. I have found a way and have it working on my server for my own purposes.
It is a bit copmplicated...
September 13, 2004 at 7:27 am
Why not use the 'execute package task'. You get to specify the server and the package name so should suit your purposes.
September 13, 2004 at 7:14 am
There are a few ways to achive this. This probably the simplest.
Set up two data connections in dts. Click on source and destination and right click to get the task...
September 10, 2004 at 2:28 am
See this article for how to get a loop in a dts package:
http://www.sqljunkies.com/How%20To/A8CB0AFE-D143-4B49-B865-4FBBFEDFCCD7.scuk
You need to find a way of bringing each id from the table into a variable to...
September 9, 2004 at 10:19 am
The maximum allowed for any data type is 8000.
If you want more than this, you will have to strip the first 8000 chars into one parameter, the next 8000 in...
September 9, 2004 at 7:35 am
Use:
isnull(dbColumn,0)
If it is null, it will use 0.
September 9, 2004 at 7:19 am
Believe it or not, the query:
CONVERT(numeric(10,2),round(34.2365,2,1))
... is the most efficient out of all the examples. Looking at statistics it takes 0ms to run, whereas all the others take at least...
August 25, 2004 at 8:18 am
Cedric and Razvan - I am afraid your examples do not work. They still round up the value when I try them in QA. Try your examples out with 34.2399...
August 25, 2004 at 4:12 am
Try this:
--- DECLARE VARIABLES
DECLARE @MYVAL DECIMAL (8,4) ---ORIGINAL VALUE
DECLARE @MYVAL_CONVERTED NVARCHAR(50) ---CONVERT VAL TO STRING
DECLARE @STARTPOINT AS INTEGER ---POSITION...
August 24, 2004 at 8:52 am
Viewing 15 posts - 421 through 435 (of 606 total)