Question

J'ai une exigence où j'ai besoin de remplir une base de données SQL Server (TBL_CUSTOMER) avec la liste SharePoint.Je ne suis pas sûr de la meilleure approche.

Approche 1: BCS à la base de données externe et la migration de contenu planifiée (si possible)

Approche 2: Créez des procédés de magasin dans la base de données SQL externe et appelez SharePoint Web Services pour remplir la table TBL_CUSTOMER

Approche 3: Puisse un script PowerShell pour lire la liste SharePoint et écrire sur la table SQL

Les gars, j'ai vraiment besoin de votre jugement, je connais la meilleure approche à prendre.(Malheureusement, ils m'ont donné 2 jours pour trouver les meilleures solutions).

Je l'apprécierais vraiment.

Était-ce utile?

La solution

There's several ways to skin this cat, but maybe the easiest way would be to move the list from SharePoint, into your SQL table, then use BCS to consume that table so you can use it in SharePoint. Not sure on the complexity or requirements, but this would solve the issue of having the data in SQL, and making it available in SP.

otherwise, some sort of a routine (timer job, PowerShell tasked) can handle copying (duplicating) the data. Syncing at that point get's a little iffy, unless you're doing a complete overwrite each time.

HTH

Licencié sous: CC-BY-SA avec attribution
Non affilié à sharepoint.stackexchange
scroll top