Tagged Questions
The indexed tag has no wiki summary.
9
votes
1answer
2k views
When should I use indexed arrays of OpenGL vertices?
I'm trying to get a clear idea of when I should be using indexed arrays of OpenGL vertices, drawn with gl[Multi]DrawElements and the like, versus when I should simply use contiguous arrays of ...
5
votes
8answers
725 views
Re-indexing large table - how screwed am I?
I have a 1 TB, 600m row, table which has a misguided choice of indexed columns, specifically a clustered index on the primary key column which is never used in a select query.
I want to remove the ...
4
votes
3answers
3k views
Grails indexed parameters
I have a list of Team objects that have an Integer seed property. I want to edit all the teams' seeds at once, in a single form. I'm sure that Grails supports indexed parameters, but I can't get it to ...
3
votes
2answers
110 views
Iterate through indexed property in Delphi 2010
In Delphi 2010 is there a way to iterate through any kind of indexed property (like Pages of TPageControl, for example)?
3
votes
2answers
468 views
Alpha transparency in indexed-png images
Here is an image:
This image is a simple black-to-transparent gradient saved in full RGBA PNG.
Here is the same image, converted to indexed-alpha PNG by GIMP (Photoshop produces the same result)
...
2
votes
2answers
323 views
What to replace left join in a view so i can have an indexed view?
I have normalized tables in a database and to denormalize it, I created a view out of two tables. When I tried to create a clustered index on the view, it wouldn't let me, as the view was created with ...
2
votes
1answer
370 views
Saving indexed 16-bit grayscale png in C#
I don't know if GDI+ supports saving a bitmap to 16-bit grayscale indexed png, but if it does I can't seem to be able to do it. Is this possible? If not, is there an open-source library that can be ...
2
votes
1answer
143 views
Can color cycling be achieved in GDI+?
Is "color cycling" possible in GDI+ with WinForms? I'd like the modify one or more colors in the palette of an on screen surface so that whenever the surface is repainted, GDI+ will use the modified ...
2
votes
2answers
1k views
How to check whether a file is open already in COBOL?
I am trying to find out a way to check whether a file is already opened in COBOL, so that I can open it if it is closed or close it if it is opened.
Thnx.
1
vote
2answers
14 views
How to erase the searchform, on the search results page, of indexed_search?
I tried to just erase the html markup from the indexed_search template file, this does work fine, until I found out that this causes a Javascript error where I can not use the numeric navigation. ...
1
vote
4answers
91 views
C#: Dictionary indexed by List
I try to write a program where Dictionary is indexed by List. (trust me i do, and yes there are option, but i like indexing by list). There is a minimal working (actually not working, only one last ...
1
vote
2answers
58 views
Speed up MySQL join to check for duplicates
I'm using the following query to return all duplicate records with the same first and last name. The trick is that the contact_id, has to be in descending order.
The query returns the contacts as ...
1
vote
2answers
64 views
I can't get a value to stay in my $_SESSION variable
I am trying to get values out of an indexed array, but when I use a variable as the index (which is equal to an index in the array), it does not appear. I get an Undefined Index Error. Why is this ...
1
vote
1answer
257 views
SQL Server 2008 R2 and execution plan in the indexed view
I've created an indexed view (MyView) that consists of three columns:
Table1_ID (int not null)
Object_CreationDate (datetime, null)
Objec_Count(bigint null)
I have created clustered unique index ...
1
vote
2answers
256 views
Understanding column type in indexed view in SQL Server 2008 R2
We created an indexed view by such sql:
Select Table1_ID, Count_BIG(*) as Table2TotalCount from Table2 inner join
Table1 inner join... where...
Also after creating the view, we set clustered unique ...
1
vote
1answer
118 views
2 dimensional table with indexing by string(object)
I've got a problem i need to create 2 dimensional table which will be indexed by string for example:
table["London","Cambridge"] = 120;
or jagged:
table["London"]["Cambridge"] = 120;
How to ...
1
vote
1answer
264 views
How do you create an indexed table view based on last name
If you could find a tutorial for an indexed table view based on last name like the "Contacts" app, that would be great. I've search all around but can't find one on last names.
1
vote
1answer
171 views
Problem with indexed table…UITableView iPhone problem
I am trying to grab the data from the database and display all the values in sorted order grouped into sections from A-Z and also my UITableView is indexed. In this case the indexes are A-Z. The ...
1
vote
2answers
2k views
Editing 8bpp indexed Bitmaps
i'm trying to edit the pixels of a 8bpp. Since this PixelFormat is indexed i'm aware that it uses a Color Table to map the pixel values. Even though I can edit the bitmap by converting it to 24bpp, ...
1
vote
2answers
229 views
Flash browser app ActionScript: how to extract a subset of objects from a sorted array *efficiently*?
I have a browser-deployed Flash app (not an AIR app with access to SQLConnection) and it fetches JSON results from a remote server via HTTPService.
I need to extract subsets from the returned ...
1
vote
2answers
586 views
SQL Indexed Views : what happens if data has changed
I undestand what indexed view are but i wonder what exactly happens when the data in underlaying table(s) has been changed?
Is entire view cache discarded od just changed rows?
I have very complex ...
1
vote
2answers
701 views
Indexed Views in OLTPs?
I'm familiar with SQL Server Indexed Views (or Oracle Materialized Views), we use them in our OLAP applications. They have the really cool feature of being able to usurp an execution plan and remap it ...
0
votes
1answer
20 views
Indexed_search extension where is the div “tx-indexedsearch-whatis” created?
I want to modify the content which is marked into the div with the class "tx-indexedsearch-whatis". I searched for this div in the standard template file and I did not find it. I guess the mark code ...
0
votes
1answer
40 views
indexed flat-files
We have a batch analytical SQL job – run once daily – that reads data from 2 source tables held in a powerful RDBMS. The source tables are huge (>100TB) but has less than 10 fields combined.
The ...
0
votes
1answer
116 views
IntelliJ IDEA: “Indexed Maven Repositories” list - how to add remote maven repository in this list?
I'm having trouble understanding how to get repositories in the "Indexed Maven Repositories" list of the IntelliJ IDEA.
In one my project I have two repos in this list: one local and one (main) ...
0
votes
1answer
85 views
Yahoo indexed pages script
I'm using following script:
<?php
$domain_name = 'davidwinstead.com';
$domain_name = strtolower(trim($domain_name));
$yahoo_url = ...
0
votes
0answers
46 views
Dozer indexed mapping not working issue
I use Dozer 5.3.2 and am trying to map two object hierarchies. below:
Class [A]
public class A {
private B b;
public A() {
this.b = new B();
}
// getter & setter.
}
Class ...
0
votes
0answers
50 views
Indexed TableView delegate methods are not working
In my app I am using index tableview based on alphabets.
- (NSInteger)tableView:(UITableView *)tableView sectionForSectionIndexTitle:(NSString *)title atIndex:(NSInteger)index {
int index1 = 0;
...
0
votes
0answers
99 views
applying uilocalizedindexedcollation to uitableview generated from sqlite database?
I can't find any example of this anywhere so I'm not entirely sure it's possible.
I have quite a simple iPhone app - a local sqlite database containing over 200 records, a basic uitableview displays ...
0
votes
0answers
54 views
how to add an index to a scrollable uitextview?
i am making a app to read my book and i want to put the how book text in a scrollable UITextView but i have a few chapters that i want to make easily accesible to the user.
is it possibile to add an ...
0
votes
0answers
21 views
Bitmap Indexed8 image
I'm writing a program to read an image format from an old program, from the days of 256 colors. This image includes a stream of bytes containing a 256 color palette, then a stream of bytes with the ...
0
votes
1answer
81 views
How to improve the performance of indexed search in typo3?
I have used typo3 indexed search. I have many pages around 50000. Indexed search become too slow.
When i search for the word, it takes more time. How to improve the performance of front end search.
0
votes
1answer
64 views
Indexed search displays html and js-code typo3
I've upgraded from 4.2 to 4.5 in single upgrades (4.2->4.3 etc.). After the final upgrade, the indexed search displays the html and js code of some content blocks in the search results. Not all ...
0
votes
1answer
204 views
Hibernate search : How to index B childs of a A parent class ? How to get only B objects that contains one specific object A using lucene?
I have a problem with lucene indexation, I insert one indexed entity in a manyToMany association but lucene doesn't index as I expected.
@Entity
@Indexed
@Table(name="level")
public class Level ...
0
votes
0answers
40 views
Can an SQL subscription notification be properly registered for an SQL query on which it is not possible to create an indexed view? [closed]
SQL Server Service Broker - Query Notifications
0
votes
1answer
113 views
Problem with @Indexed annotations in hibernate search
I'm actually trying to deploy HibernateSearch in a J2EE application. I have imported some dependencies I've seen on tuto's :
<!-- HIBERNATE DEPENDENCIES -->
<dependency>
...
0
votes
1answer
204 views
Should I use IndexedDB for web-app?
I'm planning to build a web-app to do automated quizzing for some language classes I teach. The initial mock-ups have been built as a Drupal module, so it stores everything in a mySQL database ...
0
votes
3answers
49 views
How to turn an array of values into another indexed array?
this is a follow up to another question which I was instructed to split up. I have different set of columns and their values some which have values, some which don't. For example:
$vCountries ...
0
votes
1answer
210 views
Problem with creating Indexed View AND Group BY in SQL Server 2008 R2
I want to create indexed view with such t-sql:
Select
Table1_ID,
cast(CONVERT(varchar(8),
t2.Object_CreationDate, 112)AS DateTime) as Object_CreationDate ,
Count_BIG(*) as ...
0
votes
2answers
359 views
Understanding indexed view update qnd query process in SQL Server 2008 R2
I created indexed view (clustered unique index on Table1_ID) view with such T-SQL:
Select Table1_ID, Count_BIG(*) as Table2TotalCount from Table2 inner join
Table1 inner join... where ...
0
votes
1answer
887 views
UITableView navigationController Section Index align after Navigation Header
In a Section Indexed UITableView how do you make the title of the section chosen (by pressing the Section Index) align *not* at the very top of the screen (under the navigation controller) but rather ...
0
votes
2answers
82 views
Is there a way to know when the index on uitableview is actually used?
Is there a way to know when the index on uitableview is actually used? I can’t find any methods in the Apple documentation, but I was wondering if anyone else knows anything. I would basically like to ...
0
votes
1answer
330 views
C++: need indexed set
I need an indexed associative container that operates as follows:
initially empty, size=0.
when I add a new element to it, it places it at index [size], very similar to a vector's push_back. It ...
0
votes
1answer
84 views
How to index an array?
I have a multi dimensional array, like this:
array('name' => array('title'=>'Title','date'=>'Created'))
I store it as JSON 'array', and when I decode it, I want to reach every item by its ...