Tag: 天青

无法在SQL Azure中的数据库之间进行查询

我有一个SQL Azure数据库服务器,我需要查询数据库之间,但无法弄清楚如何完成这一点。 这里是我的数据库的结构: Server.X Database.A Database.B Database.C 在Database.A我有一个存储过程,需要从Database.B中检索数据。 通常,我会像SELECT * FROM [Database.B].[dbo].[MyTable]那样引用数据库,但是在SQL Azure中似乎不允许这样做。 Msg 40515, Level 15, State 1, Line 16 Reference to database and/or server name in 'Database.B.dbo.MyTable' is not supported in this version of SQL Server. 有没有办法在数据库端做到这一点? 在最终版本中,数据库A和C都需要来自数据库B的数据。

asp.net:图表处理程序configuration中的临时目录无效

我得到这个错误Invalid temp directory in chart handler configuration [c:\TempImageFiles\]. 运行我的代码。 内部我得到No http handler was found for request type 'GET' error ,我通过引用没有http处理程序解决它 但是现在我正在得到上面的错误错误的细节 Description: An unhandled exception occurred during the execution of the current web request. Please review the stack trace for more information about the error and where it originated in the code. Exception Details: System.IO.DirectoryNotFoundException: […]

为什么在Windows 2012 Server上Azure部署比在Windows 2008 Server上慢

我有一个ASP.NET(Webforms)与.Net Framework 4.0工作。 如果我使用osFamily="1" (在Windows 2008服务器上)部署该站点,则.NET CLR平均需要120 ms (根据NewRelic日志)。 如果我使用确切的站点,并且使用osFamily="3" (在Windows 2012服务器上)部署它,则.NET CLR需要超过500 ms 。 我知道我应该转向MVC4 ,也许.Net Framework 4.5 ,但我想知道是否有其他人有同样的问题,如果你知道是什么原因造成的? 编辑 看起来像osFamily=2也有同样的问题。