Viewing 15 posts - 1,246 through 1,260 (of 1,353 total)
Had to edit this as I got my postings crossed.
You can use the task referred to above for processing the dimensions, but you will have to do so individually. I...
August 31, 2004 at 7:11 am
It also sounds to me as if a stored procedure is missing because of the second part of your message.
Re the error message: "Cannot add rows to sysdepends for the...
August 31, 2004 at 6:39 am
Yes, I understand.
As I indicated already, you need to follow the procedures listed by the previous answer to use a ? and attach that property to the global variable.
I do...
August 17, 2004 at 9:12 am
You only need to use the dynamic properties if you are using the global variable to change the property of one or more object items. For example, if a global...
August 17, 2004 at 9:04 am
You can use the dynamic properties task to make the output file name anything you want. I use it to take in files when the names constantly change (and sometimes...
August 13, 2004 at 8:28 am
While it's true you can do this this way, for your purposes the data driven task is a better choice.
The main purpose for creating a recordset global variable with the...
August 13, 2004 at 8:12 am
Take the time to learn to do this through QA.
Also, you don't say if the temp table code is for an application, but if so create the temp tables in...
August 13, 2004 at 8:02 am
This could easily be scheduled to work automatically.
You can use the staging table, which is fine, or you could delete the portion of the permanent table which will be...
August 13, 2004 at 7:57 am
I would use a combination. Run the execute task to run your pre-queries. Use the data driven task to run the query that outputs to the file.
The data driven...
August 13, 2004 at 7:51 am
Excellent point. I work with one domain over which I have complete control. Therefore creating a role is tantamount to creating a group with an extra layer.
Based on what you...
August 12, 2004 at 12:13 pm
While I would normally defer to one much wiser in the ways of SQL Server than me (really, I mean that) I have spent...
August 12, 2004 at 11:28 am
I recommend against using roles if you have control over the domain. Windows groups are much more efficient. Roles are most useful when you don't control the domain in which...
August 12, 2004 at 9:53 am
I would do something similar to the following:
Function Main()
Dim fso, file
Dim pkg, stpNext
Set pkg=DTSGlobalVariables.Parent
Set stpNext=pkg.Steps("<<Name of next DTS Step>>")
Set fso=CreateObject("Scripting.FileSystemObject")
Set file=fso.GetFile("<<FileName>>")
If file.DateModified (Your logic here) then
--If you want it to stop
stpNext.DisableStep=True
Else
--If...
August 12, 2004 at 9:48 am
Rather than fail the package, I would use the file scripting object to get the file you want and then examine it's last modified property. If it's within the range...
August 10, 2004 at 3:13 pm
Viewing 15 posts - 1,246 through 1,260 (of 1,353 total)