Tagged Questions

1
vote
3answers
204 views

incremental SQL query

My application has a fixed set of SQL queries. These queries are run in polling mode, ever 10 seconds. Because of the size of the database (> 100 GB), and the design (uber normalized), I am running ...
1
vote
1answer
641 views

Linq to SQL: Varbinary(Max) incremental reads

In SQLServer 2008 stored procedures, SUBSTRING can be used to return only part of a varbinary(MAX) column at a time from a query. Is a similar feature available when using LINQ To SQL via C# directly ...
0
votes
1answer
76 views

How to produce an incremental DDL script?

Mine is a SQL Server database. Suppose I have two DDL scripts, one old and one new. I want to compare the old and the new scripts and generate an incremental script which can be run on the database ...
0
votes
0answers
122 views

SQL Server: Count firstbuying customers (incremental count) and group by month and area

I have one table (SQL Server 2005) with sales data spawning over multiple years. This table includes all buying customers (CustNo) with sales month (Date) and shop area (ShopNo) among other columns. ...