Does anyone in this forum know anything about SSIS? I would like to SSIS to
connect to Sharepoint and import contacts or any other data for that matter.
--
Thank You, Leo
Connecting directly to the SharePoint database is not supported - most especially
for an insert. With that said, you can do it if you like, it's just a SQL
DB. You'll just need to tear through it all to figure out the tables you
need to work with. Be careful, there is a pretty good possibility of missing
something and breaking things. You also lose the option of MS support if
you go this route and something does break.
You likely will be much better served looking into another route. The code
to handle this would be pretty straightforward - depending on your specifics.
This would also avoid any issues with irreversibly breaking things:
1. Connect to Contacts list
2. Create new SPListItem on List
3. Populate field values on ListItem from Source
4. SPListItem.Update()
5. Rinse, Lather, Repeat as necessary
There are obviously some interim steps and other niggling little details,
but that gets you going in the right direction.
Dave
I have a Foxpro Database that is been exported using SSIS to a SQL database. I would like a WSS 3.0 contacts list to bve kept in sync with the SQL database so the users can view this as a sharepoint list in Outlook.
Thanks.
EggHeadCafe - .NET Developer Portal of Choice
http://www.eggheadcafe.com
Mike Walsh
WSS FAQ www.wssfaq.com / wss.collutions.com
no private e-mail questions please
The way SharePoint can deal with data (from SQL, a Web Service etc.)
being 'in sync' is using the Business Data Catalog which is part of
Office SharePoint Server 2007, not WSS.
For doing what you need to in WSS you would have to have some process on
the server that periodically updates the SharePoint list. This can be
done but you would need to program it.
HTH,
Ed Richard
"Todd PArker" <Todd PArker> wrote in message
news:20071111...@aleon.com.au: