我是sql azure的新手。现在我面临一个很大的问题,那就是SQL Azure联盟。在我的一个项目中,我想使用联合。为此,我想从所有联合会读取数据。如何检查服务器中的联合总数并从联合中读取数据?还有我如何将数据插入联合? 目前我正在使用:
string strSQL = @"SELECT f.name, fmc.federation_id, fmc.member_id, fmc.range_low, fmc.range_high " +
"FROM sys.federations f " +
"JOIN sys.federation_member_distributions fmc " +
"ON f.federation_id=fmc.federation_id " +
"ORDER BY fmc.federation_id, fmc.range_low, fmc.range_high";
string strTableName = "federation_member_distributions";
try
{
using (SqlConnection connection = new SqlConnection(csb.ToString()))
{
connection.Open();
sbResults.AppendFormat("-- Open {0}\r\n\r\n", csb.ToString());
data = new DataSet();
data.Locale = System.Globalization.CultureInfo.InvariantCulture;
using (SqlCommand command = connection.CreateCommand())
{
// Connect to federation root or federation member
command.CommandText = "USE FEDERATION ROOT WITH RESET";
command.ExecuteNonQuery();
sbResults.AppendFormat("{0}\r\nGO\r\n", command.CommandText);
}
//Retrieve federation root metadata, and populate the data to the DataGridView control
SqlDataAdapter sqlDataAdapter = new SqlDataAdapter(strSQL, connection);
sqlDataAdapter.Fill(data, strTableName);
sbResults.AppendFormat("{0}\r\nGO\r\n", strSQL);
}
}
catch (Exception ex)
{
}
但它不起作用
答案 0 :(得分:3)
对于您的上述问题,您真的需要查看这些文章,讨论如何使用SQL Azure Federation:
您可以在上方找到扇出示例工具,其中包含向您展示如何从联盟中获取数据的代码。
此示例“Fan-out Querying for Federations in SQL Azure (Part 2): Scalable Fan-out Queries with TOP, ORDER BY, DISTINCT and Other Powerful Aggregates, MapReduce Style!”的第二部分显示了如何使用特定示例运行扇出查询。
尝试以上示例,如果您遇到任何问题,请告诉我们。
答案 1 :(得分:3)
我与SQL Azure团队的Cihan Biyikoglu进行过讨论,以下是他的建议:
您的想法是,您不必缓存数据所在位置的“地图”,因此您不必这样做;
这是伪应用程序代码和执行扇出的实际示例;您也可以尝试使用此UI中的代码。
http://federationsutility-seasia.cloudapp.net/About.aspx
Start at the
@i=MIN_VALUE (of the data_type or federation key like customerID=-1)
While (@i not null)
{
Try
{
-- switch to the next member
USE FEDERATION fedname(id=@i)...
-- Run your transaction here for this member
SELECT * FROM table join other_table … WHERE fedkeycolumn >= @i group by … order by …
-- grab the next value
SELECT @i=range_high FROM sys.federation_member_distributions
}
Catch ()
{
If retry_count < total_retries
Exit the loop
}
}
如果您仍想查找成员,可以始终在包含联合的数据库中运行查询;
Select * from sys.federation_member_distributions fmd join sys.federations f on fmd.federation_id=f.federation_id
这种方法的问题是,如果在读取信息和完成查询处理之间存在分歧,则可能会错过读取数据。
没有缓存'map'的上述方法不容易出现这个问题。它将捕获所有成员,无论任何重新分区操作。