Sahil
Tue Oct 25 00:17:54 CDT 2005
I think the issue is deciding the name of the new MS ACCESS table ..
- Sahil Malik [MVP]
ADO.NET 2.0 book -
http://codebetter.com/blogs/sahil.malik/archive/2005/05/13/63199.aspx
----------------------------------------------------------------------------
"William (Bill) Vaughn" <billvaRemoveThis@nwlink.com> wrote in message
news:eZvNwRP2FHA.3788@tk2msftngp13.phx.gbl...
> I'm a bit late on this conversation, but has anyone suggested BCP or DTS
> to move the data?
>
> --
> ____________________________________
> William (Bill) Vaughn
> Author, Mentor, Consultant
> Microsoft MVP
> INETA Speaker
> www.betav.com/blog/billva
> www.betav.com
> Please reply only to the newsgroup so that others can benefit.
> This posting is provided "AS IS" with no warranties, and confers no
> rights.
> __________________________________
>
> "Dave DeCoursey" <mis@majorelectricsup.com> wrote in message
> news:e6QJOAM2FHA.3124@TK2MSFTNGP12.phx.gbl...
>> Thanks,
>>
>> No, the table is new; I won't know the name of it until I import the
>> data. I'll have the basic structure in Table-A, but Table xxx hasn't been
>> created yet, and that's where I want to store the data.
>>
>>
>>
>> My other option is to make the "xxx" part of the key for Table A and just
>> use it that way, but I think it would be cleaner if I could copy the
>> structure of A to create xxx.
>>
>>
>>
>> Thanks,
>>
>> Dave
>>
>>
>>
>> "W.G. Ryan - MVP" <WilliamRyan@nospam.gmail.com> wrote in message
>> news:%23wfPciL2FHA.3332@TK2MSFTNGP15.phx.gbl...
>>> Are you asking about creating the DDL or populating it? If you are
>>> asking about populating it, then just use the same schema and the new
>>> table name. Configure to OleDbDataAdapters, one for the source, one for
>>> the destination. Set the AcceptChangesDuringFill property of the first
>>> adapter to false, fill your datatable, then use the next adapter and
>>> call update. If you need only the schema, then loop through the schema
>>> table and build it from there.
>>>
>>> HTH,
>>>
>>> Bill
>>> "Dave DeCoursey" <mis@majorelectricsup.com> wrote in message
>>> news:O0coGbL2FHA.3568@TK2MSFTNGP15.phx.gbl...
>>>> OK, I think the answer is no, but I need to ask.
>>>>
>>>>
>>>>
>>>> I have a table structure defined in my Access database (SQL Server is
>>>> not available), I would like to take that table and create a new table
>>>> with a unique name. Can I do this using ADO.NET?
>>>>
>>>>
>>>> Thanks,
>>>> Dave
>>>>
>>>>
>>>
>>>
>>
>>
>
>