Viewing 15 posts - 1,411 through 1,425 (of 2,268 total)
You can use SSIS for this you will need to setup an excel data source then use a task to split out the data to the correct destination table.
You will...
May 11, 2009 at 5:13 am
ambajirao (5/8/2009)
No i can not do like that...we need to extract data into file only...
what is the reason ? i am just curious at it seems that it is...
May 8, 2009 at 7:50 am
Why can't you extract straight from the database using SSIS? this would allow you to use a sorted query for your data source..
May 8, 2009 at 5:42 am
If you use the replace command in your select query then this will not affect your data at all..
Add the replace into your code that you have and...
May 7, 2009 at 10:31 am
try using REPLACE to search for two double-quotes and replace them with one double-quote
SELECT REPLACE('"OBS""','""','"')
May 7, 2009 at 9:29 am
it should be fairly simple, if you post your table defs and some sample data then i am sure someone can help.
May 6, 2009 at 8:53 am
How are you running your SSIS packages?
have you deployed them to the files-system or database?
May 5, 2009 at 10:52 am
use CAST to convert the data types,
SELECT CAST('1500.000000' AS NUMERIC(18,2))
May 5, 2009 at 9:43 am
I would load the data from the files into a table, then use a sql task to create some indexes on the tables, and then join them using the...
May 5, 2009 at 9:37 am
try this code, it should work fine, but you may need to change it slightly if you dont want the single unique rows to be numbered
UPDATE [YourTable]
SET [LicenseNumber] =...
May 5, 2009 at 9:22 am
I did something like this recently and tried a few approaches but eded up using LogParser, its a free tool from microsoft that reads log files and can output them...
May 1, 2009 at 7:59 am
have a look at your execution plan and this will give you a clue where the bottlenecks are and help you pick the correct index.
Is there a reason you are...
April 30, 2009 at 10:52 am
What indexes do you have on the table.
Also use
select count(*) from Table1
if you want a row count as this allows the optimizer to pick what is...
April 30, 2009 at 8:57 am
shnex (4/30/2009)
i did the "isnull" solution and it is workingthe question now is : is this the best...the most professional solution?
or to verify separate : value and null value?
I would...
April 30, 2009 at 5:57 am
Can you post the query?
April 30, 2009 at 5:50 am
Viewing 15 posts - 1,411 through 1,425 (of 2,268 total)