小编Jon*_*ire的帖子

NHibernate Azure AppFabric缓存

有没有尝试过对Azure AppFabric Cache使用NHibernate Velocity L2缓存提供程序?如果是这样,你发现了什么?

另外,我们使用SQL Azure来存储我们的数据.

nhibernate azure second-level-cache azure-appfabric azure-sql-database

5
推荐指数
1
解决办法
1198
查看次数

绕过BigQuery子查询并应用限制

我有一个SQL Server查询,我试图转换为在BigQuery中运行.涉及三个表:

CalendarMonths

     FirstDayOfMonth        |    FirstDayOfNextMonth
----------------------------+----------------------------
2017-02-01 00:00:00.000 UTC | 2017-03-01 00:00:00.000 UTC
2017-03-01 00:00:00.000 UTC | 2017-04-01 00:00:00.000 UTC
Run Code Online (Sandbox Code Playgroud)

客户端

clientid |     name       | etc.
---------+----------------+------
1        |  Bob's Shop    |
2        | Anne's Cookies |
Run Code Online (Sandbox Code Playgroud)

ClientLogs

 id | clientid |   timestamp    | price_current | price_old | license_count_current | license_count_old |
----+----------+----------------+---------------+-----------+-----------------------+---------------
1   |     1    | 2017-02-01 UTC |      1200     |     0     |          10           |          0        |
2   |     1    | 2018-02-03 UTC |      2400     |    1200   | …
Run Code Online (Sandbox Code Playgroud)

google-bigquery

5
推荐指数
1
解决办法
772
查看次数