Tagged Questions
The indexed-view tag has no wiki summary.
8
votes
3answers
6k views
Is it possible to have an indexed view in MySQL?
I found a posting on the MySQL forums from 2005, but nothing more recent than that. Based on that, it's not possible. But a lot can change in 3-4 years.
What I'm looking for is a way to have an index ...
6
votes
6answers
291 views
Slowness at Indexed View for SQL 2005
Say I have a very long table (~35 million rows) called TimeCard with only 5 columns (tableID, CompanyID, UserID, ProjectID, DailyHoursWorked, entryDate). This is a pretty straight forward table that ...
5
votes
3answers
689 views
How do indexes work on views?
Can someone please explain to me in simple English how an index on a view works? I have a fairly simple understanding of indexes on tables; how would indexing a view work differently from just ...
3
votes
1answer
39 views
Index is not getting applied on Indexed View
I have an indexed view but when I run queries on that view the index which is built on View is not applied and the query runs without index. Below is my dummy script:
Tables + View+ Index on View
...
3
votes
2answers
116 views
How do I check the size of an indexed view in SQL Server?
Its easy to check storage sizes for Tables and Indexes, you can right-click the table object on SSMS explorer and voila, the details appear in a nice popup.
But since Indexed Views are displayed the ...
3
votes
4answers
155 views
Does Indexing a View in Sql Server 2008 actually duplicate the original data?
If i create an Indexed View (in Sql Server 2008), does this mean i copy all required the data from the source tables into a separate new table? Or are only some tiny pointers/indexes saved, to ...
3
votes
2answers
152 views
Sql server indexed view
OK, I'm confused about sql server indexed views(using 2008)
I've got an indexed view called
AssignmentDetail
when I look at the execution plan for
select * from AssignmentDetail
it shows the ...
3
votes
2answers
901 views
Performance impact of indexed view in MS SQL Server 2008
Does anyone have experience with using indexed view in MS SQL Server 2008?
I am trying to find out how does indexed view affect performance of insert / update statements, that are adding / updating ...
3
votes
8answers
979 views
How can i speed up this Indexed View?
I have a simple Indexed View. When I query against it, it's pretty slow. First I show you the schema's and indexes. Then the simple queries. Finally a query plan screnie.
Update: Proof of Solution ...
3
votes
4answers
3k views
Indexed view in Sql Server 2005 Error
I tried to add an index on a view in Sql Server 2005 an I got this error: "Cannot create index on view 'AllAssignmentNotes' because the view is not schema bound."
I didn't want to put too much ...
3
votes
2answers
3k views
Does MySQL view always do full table scan?
I'm trying to optimize a query which uses a view in MySQL 5.1. It seems that even if I select 1 column from the view it always does a full table scan. Is that the expected behaviour?
The view is just ...
2
votes
1answer
39 views
Do SQL Server View Indexes perform correctly if called from a stored procedure?
The ORM we are using (LLBL) does not easily support the NOEXPAND keyword on selecting from SQL Server Indexed Views, which, as I understand it, pretty much negates the purpose of the Indexed View.
I ...
2
votes
4answers
236 views
In SQL Server, when should I use an indexed view instead of a real table?
I know in SQL Server you can create indexes on a view, then the view saves the data from the underlying table. Then you can query the view. But, why I need to use view instead of table?
2
votes
4answers
1k views
SQL Server Create View Index which contains distinct or group by
I have a table of address data in my SQL server database. This table is not normalized so it contain many addresses the are repeated. Each unique address can be identified by an Id field (these ids ...
2
votes
2answers
495 views
How to use the NOEXPAND hint with Linq to SQL?
I have an indexed view that I need to specify the noexpand hint for in order for it to perform reasonably. Unfortunately as seen with regard to modifying the Linq to SQL generated T-SQL query from the ...
2
votes
1answer
177 views
SQL Server indexed view matching of views with joins not working
Does anyone have experience of when SQL Servr 2008 R2 is able to automatically match indexed view (also known as materialized views) that contain joins to a query?
for example the view
select ...
2
votes
3answers
858 views
Index view: How to choose the Clustered Index?
I'm going to do an indexed view, based on three tables with inner and outer joins between them (SQL Server 2005). I will run all kind of queries against this view.
So, I wonder what is the best way ...
2
votes
2answers
1k views
SQL Server 2005 Index Filter Feature
I was told that there is new a feature in SQL Server 2005 called index filters.
What I want to do is add an Index to a column and have the index ignore null values.
I can't find good information ...
2
votes
1answer
50 views
Why do my indexes get dropped when I change an Index'd view's schema?
Server: MS Sql Server 2008
When i create an indexed view .. and i then alter the view's schema, the index's all get dropped.
It's sooo annoying!
Can someone explain why this is? At first I thought ...
2
votes
1answer
111 views
Not sure if I understand what an Indexed View does behind the scenes, in SqlServer
I'm using sql server 2008 and have started to find using Indexed Views are helping me speed up some of my queries ... as my schema isn't basic.
So, if i have a table that is the following...
...
1
vote
2answers
43 views
SQL Server ISDATE In Indexed View
I have a indexed view where I basically need to do this
SELECT ...
CASE
WHEN ISDATE(ColumnName) = 1 THEN CONVERT(datetime, ColumnName, 103)
ELSE NULL
END AS ViewColumn
...
1
vote
1answer
114 views
Can we use openCV to load and resize 2d image that had indexed colors?
So, I have an image cv::Mat created as an indexed 2D matrix with colors 1,2,3,... up to 255. I want to resize my image all at once but do it like I currently do - individually for each index, so as ...
1
vote
1answer
331 views
simulate union to make indexed view
I've got the following table schema in SQL Server 2005 and I'd like to denormalize it into an indexed view for some queries I'm writing until I can make the structural changes permanent.
The tables ...
1
vote
1answer
90 views
Creating indexed views
When I try to create indexed view I am getting an error "datepart returns indeterministic value, use system defined deterministic function or make the user defined function to return deterministic ...
1
vote
1answer
692 views
On-demand refresh mode for indexed view (=Materialized views) on SQL Server?
I know Oracle offers several refreshmode options for their materialized views (on demand, on commit, periodically).
Does Microsoft SQLServer offer the same functions for their indexed views?
If not, ...
1
vote
2answers
564 views
How to formulate a SQL Server indexed view that aggregates distinct values?
I have a schema that includes tables like the following (pseudo schema):
TABLE ItemCollection {
ItemCollectionId
...etc...
}
TABLE Item {
ItemId,
ItemCollectionId,
ContributorId
}
...
1
vote
1answer
231 views
NHibernate and indexed views (materialized views)
Recently I was busy implementing paging functionality with NHibernate and things went smoothly with simple entities, but I hit a performance problem with those ones where multiple joins are required ...
1
vote
3answers
1k views
Do Indexed Views Update During a Transaction?
Let's say I've got a SQL Server Indexed View, vwIndexedView, that reads from two tables, tbTableOne, and tbTableTwo.
If I perform an action on one of the two tables inside a transaction, what happens ...
1
vote
2answers
1k views
Is it possible to create an indexed view with SQL Server 2008 which selects from another indexed view?
Is it possible to create an indexed view with SQL Server 2008 which selects from another indexed view?
create view V1 as (select 1 as abc)
create view V2 as (select abc from V1 group by abc)
0
votes
0answers
9 views
T-SQL Filtering views for PKs vs data
I'm trying to get a better idea of how to use views and inline functions to filter commonly used filters on our data. Here's the question (which is restated below after the system is built up):
Is ...
0
votes
0answers
29 views
How to find the touch end action when pressing the index button (A-#) in an UITableView?
I have a sectioned table view. I knew that the method tableView: sectionForSectionIndexTitle: will be called whenever we scroll on the a-# index(It is vertically placed in the right side of the table ...
0
votes
0answers
31 views
ARITHABORT at the Database Level
We've recently added a bunch of updatable indexed views to our SQL Server DBs (some 2000, some 2005, some 2008R2). Entity Framework (4.1) now fails on inserts with the error:
INSERT failed because ...
0
votes
1answer
61 views
SQL Server Indexed View Column Precision
I'm trying to create an indexed view and get the following error creating the index:
Cannot create index on view
....'
because column 'Amount' that is referenced by the view in the
WHERE or ...
0
votes
2answers
47 views
SQL Server Indexed View Error
I realize this is a very contrived example, but I've simplified the full version down to the following which demonstrates the problem:
CREATE VIEW model.Appointments_Partition1
WITH SCHEMABINDING AS
...
0
votes
2answers
81 views
Is it possible to create an indexed view from Xml Data in Sql Server 2008?
I see from the 2005 documentation that you cannot create an indexed view from an Xml column.
Is this possible in 2008 or 2008R2? I can't find any documentation saying that it is something that was ...
0
votes
1answer
66 views
Need query to determine if any Indexed Views exist in a database
We are in the process of migrating from SQL-Server 2005 Enterprise to SQL-Server 2008 Standard.
I am trying to find a query that can tell me if any INDEXED VIEWS exist in a database (as they won't ...
0
votes
1answer
172 views
How can i create a Spatial Index on an Indexed View?
I have a view which already has SchemaBinding applied AND it has a UNIQUE CLUSTERED index.
Now, i'm trying to add a second index, which is a SPATIAL index ... and I get the following error message:-
...
0
votes
1answer
89 views
Using indexed views to encapsulate the complexity of larger queries is ok for performance?
i am creating a complex querying system based on a "framework of views".
In this way writing high level queries is very easy.
Currently the performance is bad (comparing to what I could achieve by ...
0
votes
1answer
68 views
SQL: What is the best way to display (near) realtime site activity over a time interval? i.e. “Messages sent in the last hour”
The goal is to update the UI as frequently as possible but performance is a concern and hits to the database should be minimised.
I used Indexed Views to keep up to date stats on items that were not ...
0
votes
1answer
81 views
Replace view with a trigger
I have a view which I was hoping to create an index over which is failing because I would need to index a computed column (this fails with error code 2729 "...cannot be used in an index or statistics ...
0
votes
1answer
118 views
Indexed view and T-sql that give same results as DISTINCT in SQL Server 2008 R2
I want to create indexed view MyView with such t-sql
Select
o.Theme_ID as Theme_ID,
DATEADD(day, DATEDIFF(day, 0, o.Object_CreationDate), 0) as Objext_CreationDate,
Count_BIG(*) as ...
0
votes
1answer
62 views
error in creating index to views
I have created a view using the following code
CREATE VIEW dbo.two_weeks_performance WITH SCHEMABINDING
AS
SELECT dbo.day_dim.date_time AS Date,
dbo.order_dim.quantity AS Target_Acheived
...
0
votes
3answers
174 views
Fastest SQL query for non-indexed data
I'm building a few custom reports against a SQL Server 2005 database. The database belongs to a 3rd party management application we run. The data I'm pulling isn't among the primary purposes of the ...
0
votes
1answer
197 views
SQL Server Indexed view for Full Text Search
I want to use the Full Text Search feature of Microsoft SQL Server.
If I have a table Client which refers other tables like City, Country, Department, etc. is it better to create a separate table ...
0
votes
1answer
39 views
Is it possible to make an Indexed View for a particular result I want?
Is it possible to create an indexed view which returns the following results :-
ID | Location Name | Aliases for that Location
1 | Some Location | Alias 1, Alias 2, Alias 3
2 | Another Location | ...
0
votes
2answers
468 views
Does SQL Server Management Studio (or SQL Server) evaluate *all* expressions?
Here's my configuration:
I have a re-runnable batch script that I use to update my database.
Inside of that batch script, I have code that says the following:
If Table 'A' doesn't exist, then ...
0
votes
1answer
2k views
iPhone contacts app styled indexed table view implementation
My Requirement:
I have this straight forward requirement of listing names of people in alphabetical order in a Indexed table view with index titles being the starting letter of alphabets (additionally ...
0
votes
1answer
306 views
Does MySQL have an equivalent of SQL Server “indexed views”?
Does MySQL have an equalavent to SQL Servers "indexed view" functionality?
http://stackoverflow.com/questions/439056/is-a-view-faster-than-a-simple-query
What I'm specifically looking for is a way ...
0
votes
1answer
123 views
Problem with indexed view msql
I have problem with a counting column in my view.
SELECT ColumnC, ColumnA % ColumnB AS ModuloColAColB, COUNT_BIG(*) AS cBig FROM dbo.T1
GROUP BY ColumnC, ModuloColAColB
Query is similar to this ...
0
votes
1answer
330 views
Full-text index population performance on a SQL 2005 indexed view
I have created an indexed view:
CREATE VIEW LogValueTexts WITH SCHEMABINDING AS
SELECT ISNULL(LRVS_SLOG_ID*256+LRVS_IDX,0) AS ID,LRVS_VALUE AS Value
FROM dbo.LRVS_LogRecordedValues WHERE ...