Viewing 15 posts - 511 through 525 (of 682 total)
In the SSIS data flow task, there is an XML Source component which allows you to specify your source XML file and optional XSD schema. From there you can...
Tim Mitchell
TimMitchell.net | @tmitch.net | Tyleris.com
ETL Best Practices
March 13, 2008 at 7:20 pm
After your typecast, run it through a Derived Column transform, and use the following for your expression (bear with me, I don't have my editor open so this is freehand):
(LEN(my_val)...
Tim Mitchell
TimMitchell.net | @tmitch.net | Tyleris.com
ETL Best Practices
March 13, 2008 at 7:12 pm
If you're using a mapped drive (such as M:\my_folder), you will have problems because the account under which you run SQL Agent doesn't care about drives mapped by user logins....
Tim Mitchell
TimMitchell.net | @tmitch.net | Tyleris.com
ETL Best Practices
March 13, 2008 at 11:01 am
How are you running your SQL Server Agent - is it running under a system account or a domain account? Does that account have access to write to the...
Tim Mitchell
TimMitchell.net | @tmitch.net | Tyleris.com
ETL Best Practices
March 13, 2008 at 10:40 am
You can set your package setting ProtectionLevel to EncryptSensitiveWithPassword, and set a strong PackagePassword to encrypt the password of the remote server.
hth,
Tim
Tim Mitchell
TimMitchell.net | @tmitch.net | Tyleris.com
ETL Best Practices
March 1, 2008 at 9:11 pm
Unfortunately, there aren't any good tools for this as far as I know. You can add an additional output to your script task and write out debugging information to...
Tim Mitchell
TimMitchell.net | @tmitch.net | Tyleris.com
ETL Best Practices
March 1, 2008 at 8:49 pm
The first couple of things I would check are the file paths and file/folder permissions. It sounds like you may have already verified the former; double-check to make sure...
Tim Mitchell
TimMitchell.net | @tmitch.net | Tyleris.com
ETL Best Practices
March 1, 2008 at 8:45 pm
I attribute my success in this business to taking on additional projects and learning opportunities, both on the job and off. If I had just done my assigned work,...
Tim Mitchell
TimMitchell.net | @tmitch.net | Tyleris.com
ETL Best Practices
February 27, 2008 at 1:52 pm
I'm not sure I fully understand your problem. Are you expecting that all of the records in the destination table will be overwritten? If so, you need to...
Tim Mitchell
TimMitchell.net | @tmitch.net | Tyleris.com
ETL Best Practices
February 13, 2008 at 11:04 am
What a great loss for the SQL Server community. Does anyone know if Ken had been ill? He was so young.
Tim Mitchell
TimMitchell.net | @tmitch.net | Tyleris.com
ETL Best Practices
January 31, 2008 at 2:45 pm
Thanks Jeff, you are correct - the file I was chasing down was actually not generated using bcp at all but another process. That'll teach me to to assume,...
Tim Mitchell
TimMitchell.net | @tmitch.net | Tyleris.com
ETL Best Practices
January 28, 2008 at 7:16 am
What Jeff is saying is that if you are always returning the same value, why use the ternary operator at all? Just make your expression "43" to return that...
Tim Mitchell
TimMitchell.net | @tmitch.net | Tyleris.com
ETL Best Practices
January 24, 2008 at 6:42 am
It looks like you're trying to use a ternary operator, but you've left out the third operand. A ternary statement will contain an evaluation test, a value for true,...
Tim Mitchell
TimMitchell.net | @tmitch.net | Tyleris.com
ETL Best Practices
January 23, 2008 at 2:39 pm
Yes, what you need is the Execute Process Task. You can call the PHP executable (php.exe, if I remember correctly) and pass the location of the script as an...
Tim Mitchell
TimMitchell.net | @tmitch.net | Tyleris.com
ETL Best Practices
January 22, 2008 at 8:09 pm
Take a look at your error message. It indicates that the problem is in the filesystem, perhaps a missing or inaccessible output file.
Tim Mitchell
TimMitchell.net | @tmitch.net | Tyleris.com
ETL Best Practices
January 22, 2008 at 8:06 pm
Viewing 15 posts - 511 through 525 (of 682 total)