Viewing 15 posts - 451 through 465 (of 1,156 total)
GSquared thanks for running the numbers. I know that the XML is the fastet method I have seen, but I had never gotten around to running the numbers.
March 3, 2008 at 12:02 pm
Create a variable for the path and use get date functions. Click the connection manager for the output text file --> View the properites --> expand "Expressions" --> choose connection...
March 3, 2008 at 11:58 am
Create a data conversion task. Change the numeric columns to string. Then use a derived column tasks and put this in. Note this is to make a...
March 3, 2008 at 11:55 am
The above is an example of how to do it in TSQL
March 3, 2008 at 11:18 am
Are you exporting via a view or just a table?
You will have to either pad the column in SQL or using a SSIS expression.
SELECT RIGHT('0000000000' + CONVERT(VARCHAR(10),1234567),10) AS [10 LENGTH]
March 3, 2008 at 11:17 am
You may need to run a DBCC SHRINKFILE against the log if you in fact need to reclaim some space for the OS.
Correct, thanks for pointing this part out....
March 3, 2008 at 11:12 am
Perhaps I'm misunderstanding you Adam Your not suggesting this expression (SSIS) is valid in T-SQL?
Absolutely not!! :w00t:
I was commenting on your post. I should have put...
March 3, 2008 at 10:32 am
You need to perform a transaction log backup. You should also put maintenance plans in place to ensure your recoverability and to prevent the log from growing, so large....
March 3, 2008 at 10:18 am
If you do not want to use the file system task you still have other options. These options include mirroring a copy of the file to the folder of...
March 3, 2008 at 10:15 am
Yes, it does. 😀
March 3, 2008 at 9:46 am
You can use the file system task to copy the backup to a folder of you choice.
March 3, 2008 at 9:45 am
You can also run the setup and only tick the workstation components.
March 3, 2008 at 9:22 am
Viewing 15 posts - 451 through 465 (of 1,156 total)