0

Sharepointのデータベース(WSS_Content)がありますが、SharePointがインストールされておらず、そのデータが必要です。データを取得するためのソリューションは何ですか?バイナリ配列からデータにファイル/リンク/サイトデータを抽出するコンバーターをコーディングする必要がありますか、それとももっと簡単な方法がありますか?新しいSharePointをインストールして、このデータベースを使用できますか?

4

2 に答える 2

2

少し前に持っていた、コンテンツデータベースからすべてのドキュメントを基本的に抽出する古いアプリを掘り起こしました。それは決して選択的ではなく、そこにあるものをすべてつかむだけです。次に、出力を選択して、必要なものを取得できます。

元のコードは他の誰かからのものだと思います(どこにあるのか思い出せないので、クレジットできません)。少しハックしました。気軽に試してみてください。

データベースに直接アクセスするだけなので、SQLServerにマウントする必要があります。SharePointサーバーは必要ありません。

using System;
using System.Data.SqlClient;
using System.IO;

namespace ContentDump
{
    class Program
    {
        // Usage: ContentDump {server} {database}
        //
        static void Main(string[] args)
        {
            string server = args[0];
            string database = args[1];
            string dbConnString = String.Format("Server={0};Database={1};Trusted_Connection=True;", server, database);

            // create a DB connection
            SqlConnection con = new SqlConnection(dbConnString);
            con.Open();

            // the query to grab all the files.
            SqlCommand com = con.CreateCommand();
            com.CommandText = "SELECT ad.SiteId, ad.Id, ad.DirName," +
                " ad.LeafName, ads.Content" +
                " FROM AllDocs ad, AllDocStreams ads" +
                " WHERE ad.SiteId = ads.SiteId" +
                " AND ad.Id = ads.Id" +
                " AND ads.Content IS NOT NULL" +
                " Order by DirName";

            // execute query
            SqlDataReader reader = com.ExecuteReader();

            while (reader.Read())
            {
                // grab the file’s directory and name
                string DirName = (database + "/" + (string)reader["DirName"]).Replace("//", "/");
                string LeafName = (string)reader["LeafName"];

                // create directory for the file if it doesn’t yet exist
                if (!Directory.Exists(DirName))
                {
                    Directory.CreateDirectory(DirName);
                    Console.WriteLine("Creating directory: " + DirName);
                }

                // create a filestream to spit out the file
                FileStream fs = new FileStream(DirName + "/" + LeafName, FileMode.Create, FileAccess.Write);
                BinaryWriter writer = new BinaryWriter(fs);

                int bufferSize = 1024;
                long startIndex = 0;
                long retval = 0;
                byte[] outByte = new byte[bufferSize];

                // grab the file out of the db
                do
                {
                    retval = reader.GetBytes(4, startIndex, outByte, 0, bufferSize);
                    startIndex += bufferSize;
                    writer.Write(outByte, 0, (int)retval);
                    writer.Flush();
                } while (retval == bufferSize);

                // finish writing the file
                writer.Close();
                fs.Close();

                Console.WriteLine("Finished writing file: " + LeafName);
            }

            // close the DB connection and whatnots
            reader.Close();
            con.Close();
        }
    }
}
于 2012-05-08T23:51:24.647 に答える
1

コマンドstsadm.exe-oaddcontentdb -url -databasenameを使用して、新しいSharePoint環境とWebアプリケーションにデータベースを接続することを試みることができます。この方法は、データベースをSharePoint2007から2010ファームに移行するためにも使用されます。次に、webappのURLにコンテンツが表示されます。

于 2012-05-08T13:26:14.507 に答える