Viewing 15 posts - 1 through 15 (of 17 total)
Actually it is possible to capture the out of a stored procedure in a table variable. I have been using it regularly in SQL Server 2005 for sometime now. Here...
April 2, 2008 at 7:39 am
If your in coming data is sorted according to the index specified in the destination table you get will sorted data. If, however, the data file is...
July 1, 2003 at 8:28 am
I believe you are missing user data in your old master database. Among such data is the associaton between a login and users defined within user databases. Check out...
June 20, 2003 at 12:43 pm
What are you doing on the application side to manage your transactions?
June 17, 2003 at 12:33 pm
I am not an ASP programmer, so I will try to help on the DB side. You need to create DTS package (easiest way is wihtin EM) which contains a...
June 12, 2003 at 11:44 am
Empty or null elements within an xml fragment fail to convert when numeric or decimal format is used, eventhough such conversion goes without a problem In a normal select...
June 11, 2003 at 3:01 pm
The data bulk load operation in DTS is designed to move rows of data. It does not have capibility to perform calculations on the data ( thank god it does...
June 11, 2003 at 9:52 am
I suggest that you create a DTS package which moves data of interest from disconnected servers to a statging area where you can clean and validate the data before you...
June 11, 2003 at 8:14 am
Since your application is defaulting to mid night for time portion of the date , try using a date value without the time part (yyyy-mm-dd) in your views. This will...
June 9, 2003 at 3:12 pm
You may consider using a view to the calculation for you, as shown below. All you have to do is just filter the view for the specific data of interest.
select...
June 9, 2003 at 1:22 pm
After you added the new column and you choosed populate from source did you also update the transformation step to include the new column?
June 9, 2003 at 10:16 am
SQL server uses Coding Page to figure out character set properties. If you are using bulk insert task to import your data , it provides 3 choices, however, in your...
June 9, 2003 at 9:45 am
The error message seems to indicate that the DTS package cannot find anything to do under the Transfromation Task. I would suggest that your DBA test the transfromation...
June 9, 2003 at 9:31 am
Use SQL server DTS package. It allows you to specify source, any transformations you may want to do and a destination table for the incoming data. Once you create your...
June 9, 2003 at 9:17 am
You need to capture package errors ,decode them and send output to the package logfile. Below is VB code to do this (BTW the code below can generated automatically by...
June 9, 2003 at 9:11 am
Viewing 15 posts - 1 through 15 (of 17 total)