hi Keith,
[quoted text, click to view] Keith G Hicks wrote:
> One of the charts on the MS site that compares SQL editions indicates
> that SQL Express supports the creation of indexed views but not
> something with "query matching" that I don't understand.
I do thinnk the term "query matching" is little to closed, as query matching
is used every where in SQL engines to provide accurate results...
BTW, MSDE (2k is currently the only 1 available, as MSDE 1.0 version, based
on SQL Server 7.0, has been retired long ago :D) allow you to create indexed
views as all SQL Server 2000 edition do, but only the Enterprise edition can
directly benefit from it in optimization step.. all other editions require
you to force indexed views usage via the query hint WITH NO EXPAND
(
http://msdn2.microsoft.com/en-us/library/ms188783.aspx)
[quoted text, click to view] > Anyway, we have a few views that are indexed in order to enforce
> uniqueness on certain columns. Will this function properly under MSDE
> 2k? Also, will it work properly under SQL Express if we choose to
> upgrade?
yes they should, and on SQLExpress too, as long as do not intersect with
deprecated behaviours.. start reading at
http://msdn2.microsoft.com/en-us/library/ms143532.aspx [quoted text, click to view] >
>
> Also, we're wondering about the agent and jobs. We are not planning
> on doing anything other than creatign jobs to do maintenance such as
> shrinking and backups. Will MSDE 2k allow for this?
MSDE supports and installs the SQL Server Agent, while SQLExpress does not..
--
Andrea Montanari (Microsoft MVP - SQL Server)
http://www.asql.biz http://italy.mvps.org DbaMgr2k ver 0.19.0 - DbaMgr ver 0.63.0 and further SQL Tools
--------- remove DMO to reply