active questions tagged index - Stack Overflow most recent 30 from stackoverflow.com 2009-12-15T06:47:30Z http://stackoverflow.com/feeds/tag/index http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1903573/how-do-i-find-all-the-functional-indexes-on-a-column-in-oracle 0 How do I find all the functional indexes on a column in Oracle Darcy Casselman 2009-12-14T21:18:40Z 2009-12-14T21:57:09Z <p>Say I have a program that searches a database for columns to modify, as part of a database conversion process.</p> <p>If I attempt to alter a column with a functional index defined gives the following error:</p> <pre><code>ORA-30556: functional index is defined on the column to be modified </code></pre> <p><a href="http://ora-30556.ora-code.com/" rel="nofollow">Looking up the ORA code</a>, the solution is to "Drop the functional index before attempting to modify the column."</p> <p>Great! So how do I find all the functional indexes on that column? </p> <p>The <code>user_ind_columns</code> view looks like a good start, but functional indexes have things like "SYS_NC00042$" in their <code>COLUMN</code> column. Looking around the other <code>user_</code> views, I'm not seeing anything obvious. Am I missing something?</p> <p>Or am I going about this the wrong way entirely?</p> http://stackoverflow.com/questions/1903566/search-engine-solr-sphinx-question 0 search engine (solr/sphinx) question unknown (google) 2009-12-14T21:17:51Z 2009-12-14T21:49:05Z <p>i want to make my threads content searchable with full text search engines like solr.</p> <p>but i wonder one thing. should i index just the thread.title, thread.body and post.body or should i index username, created date, nr of posts, views, country, region and city too that belongs to thread?</p> <p>i mean when an user search for a thread he will get hits returned containing thread title, 2 lines of body, which user has posted it, creation date, tags, and so on.</p> <p>should i index all this information too? but then it would be pretty much the whole database. or should i just index the 3 first columns i mentioned for full text search.</p> <p>and another question. when an user post a new thread, then i have to immidiately tell solr to add that row? if im not, how would it be searchable?</p> http://stackoverflow.com/questions/1902260/will-google-index-https-pages 2 Will google index https pages? ctrlShiftBryan 2009-12-14T17:23:04Z 2009-12-14T17:27:14Z <p>We are having problems getting Google to index our site. We decided it was easiest to just use https for the entire site. Do we need to change it so that the anonymous, "public", areas of the site are not encrypted for them to be indexed? </p> http://stackoverflow.com/questions/1883468/optimal-key-for-mysql-innodb-table-with-multi-part-where 0 Optimal key for MySQL / InnoDB table with multi-part WHERE Eric J. 2009-12-10T19:44:56Z 2009-12-13T01:53:03Z <p>Given a (simplified) table</p> <pre><code>CREATE TABLE `transactions` ( `ID` bigint(20) NOT NULL AUTO_INCREMENT, `CREATION_DT` datetime DEFAULT NULL, `STATUS_IND` int(11) DEFAULT NULL, `COMPANY_ID` bigint(20) DEFAULT NULL, `AMOUNT` bigint(20) DEFAULT NULL, PRIMARY KEY (`ID`), KEY `FKE7E81F1ED170D4C9` (`COMPANY_ID`), KEY `RPTIDX_CREATION_DT` (`CREATION_DT`), ) ENGINE=InnoDB AUTO_INCREMENT=5241784 DEFAULT CHARSET=latin1; </code></pre> <p>and a common, relatively expensive query</p> <pre><code>UPDATE transactions SET STATUS_IND = 5 WHERE COMPANY_ID = ? and (STATUS_IND = 3 or STATUS_IND = 7) and CREATION_DT &gt;= ? and CREATION_DT &lt;= ? </code></pre> <p>I'm trying to determine if there is a better index strategy. Reads will most commonly </p> <pre><code>SELECT * FROM transactions WHERE COMPANY_ID=? ORDER BY CREATION_DT </code></pre> <p><code>COMPANY_ID</code> is fairly selective (we have hundreds of companies in the table, growing quickly). <code>STATUS_IND</code> is not very selective (there are 5 common statuses and a few less common ones), and it's value frequently changes (<code>COMPANY_ID</code> and <code>CREATION_DT</code> never change for a given row). <code>CREATION_DT</code> is fairly selective and getting more selective over time as we add more transactions to the system.</p> <p>My initial thought is to replace the two existing keys with a compound key containing either <code>COMPANY_ID+CREATION_DT</code> or <code>COMPANY_ID+STATUS_IND+CREATION_DT</code>. Alternatively, possibly <code>COMPANY_ID+CREATION_DT+STATUS_IND</code> and change the order in the Update's WHERE clause?</p> <p>Also, is there a good reference that explains how InnoDB uses secondary compound indexes?</p> http://stackoverflow.com/questions/1888686/sql-server-2005-proper-index-to-filter-30-000-000-registers 1 SQL Server 2005 proper index to filter 30,000,000 registers jmpena 2009-12-11T15:09:10Z 2009-12-11T17:41:57Z <p>Hello, I have a problem with a stored procedure of a transactional table, the user have a web form to find transactions by several values.</p> <p>The process is taking too long and I don't know how to set proper index.</p> <p>here is my stored procedure:</p> <pre><code>CREATE PROCEDURE dbo.cg_searchTransactions ( @id_Ent tinyint, @transactionTypeID int = NULL, @transactionID numeric(18,0) = NULL, @channelID int = NULL, @transactionDateFrom datetime = NULL, @transactionDateTo datetime = NULL, @transactionStatusID INT = NULL, @documentType INT = NULL, @documentNumber varchar(50) = NULL, @userName varchar(50) = NULL, @accountFromNumber varchar(20) = NULL, @accountToNumber varchar(20) = NULL, @amountFrom money = NULL, @amountTo money = NULL, @correlationID varchar(30) = NULL, @externalReference varchar(20) = NULL, @externalReference2 varchar(20) = NULL, @PageIndex INT = 1, @PageSize INT = 20 ) AS BEGIN SET NOCOUNT ON DECLARE @QUERY VARCHAR(MAX) SET @QUERY = ' WITH Trans AS ( SELECT ROW_NUMBER() OVER (ORDER BY transactionID DESC) AS Row, T.id_Ent, T.transactionID, T.trnTypeCurrencyID, T.transactionDate, T.transactionStatusID, T.documentType, T.documentNumber, T.childDocumentType, T.childDocumentNumber, T.userName, T.accountFromNumber, T.accountFromType, T.accountFromCurrency, T.accountDescriptionFrom, T.costCenterFrom, T.subtotalFrom, T.taxamountFrom, T.taxamountFrom2, T.amountFrom, T.accountToNumber, T.accountToType, T.accountToCurrency, T.accountDescriptionTo, T.costCenterTo, T.subtotalTo, T.taxamountTo, T.taxamountTo2, T.amountTo, T.exchangeCurrency, T.traderAuthNumber, T.benefContractNumber, T.contractNumber, T.merchantID, T.creditCardAuthorizationNumber, T.comment, T.companyServiceCommision, T.usercommission, T.companyServiceAuthorizationNumber, T.customerBranchId, T.correlationID, T.transactionStartTime, T.transactionEndTime, T.enlapsedTime, T.serverName, T.externalReference, T.externalReference2, T.externalTrxType, T.beneficiaryName, C.shortName AS ChannelsShortName, TT.shortName AS TransactionTypesShortName, TS.shortName AS TransactionStatusDefShortName, DT.shortName AS DocumentTypesShortName, CDT.shortName AS ChildDocumentTypesShortName, AFT.shortName AS AccountTypesShortNameFrom, ATT.shortName AS AccountTypesShortNameTo, CURF.shortName AS CurrenciesShortNameFrom, CURT.shortName AS CurrenciesShortNameTo FROM Transactions T (NOLOCK) INNER JOIN TransactionTypesCurrencies TTC ON T.id_Ent = TTC.id_Ent AND T.trnTypeCurrencyID = TTC.trnTypeCurrencyID INNER JOIN Channels C ON TTC.id_Ent = C.id_Ent AND TTC.channelID = C.ID INNER JOIN TransactionTypes TT ON TTC.id_Ent = TT.id_Ent AND TTC.transactionTypeID = TT.transactionTypeID INNER JOIN TransactionStatusDef TS ON T.id_Ent = TS.ent_Ent AND T.transactionStatusID = TS.ID INNER JOIN DocumentTypes DT ON T.id_Ent = DT.id_Ent AND T.documentType = DT.ID INNER JOIN DocumentTypes CDT ON T.id_Ent = CDT.id_Ent AND T.childDocumentType = CDT.ID INNER JOIN AccountTypes AFT ON T.id_Ent = AFT.id_Ent AND T.accountFromType = AFT.ID INNER JOIN AccountTypes ATT ON T.id_Ent = ATT.id_Ent AND T.accountToType = ATT.ID INNER JOIN Currencies CURF ON T.id_Ent = CURF.id_Ent AND T.accountFromCurrency = CURF.ID INNER JOIN Currencies CURT ON T.id_Ent = CURT.id_Ent AND T.accountToCurrency = CURT.ID WHERE T.id_Ent = ' + CONVERT(VARCHAR,@id_Ent) IF NOT @transactionDateFrom IS NULL SET @QUERY = @QUERY + ' AND T.transactionDate &gt;= ''' + CONVERT(VARCHAR,@transactionDateFrom,121) + '''' IF NOT @transactionDateTo IS NULL SET @QUERY = @QUERY + ' AND T.transactionDate &lt;= ''' + CONVERT(VARCHAR,@transactionDateTo,121) + '''' IF NOT @transactionStatusID IS NULL SET @QUERY = @QUERY + ' AND T.transactionStatusID = ' + CONVERT(VARCHAR,@transactionStatusID) IF NOT @documentType IS NULL SET @QUERY = @QUERY + ' AND T.documentType = ' + CONVERT(VARCHAR,@documentType) IF NOT @userName IS NULL SET @QUERY = @QUERY + ' AND T.userName = ''' + @userName + '''' IF NOT @documentNumber IS NULL SET @QUERY = @QUERY + ' AND T.documentNumber = ''' + @documentNumber + '''' IF NOT @accountFromNumber IS NULL SET @QUERY = @QUERY + ' AND T.accountFromNumber = ''' + @accountFromNumber + '''' IF NOT @accountToNumber IS NULL SET @QUERY = @QUERY + ' AND T.accountToNumber = ''' + @accountToNumber + '''' IF NOT @amountFrom IS NULL SET @QUERY = @QUERY + ' AND T.amountTo &gt;= ' + CONVERT(VARCHAR,@amountFrom) IF NOT @amountTo IS NULL SET @QUERY = @QUERY + ' AND T.amountTo &lt;= ' + CONVERT(VARCHAR,@amountTo) IF NOT @correlationID IS NULL SET @QUERY = @QUERY + ' AND T.correlationID = ''' + @correlationID + '''' IF NOT @externalReference IS NULL SET @QUERY = @QUERY + ' AND T.externalReference = ''' + @externalReference + '''' IF NOT @externalReference2 IS NULL SET @QUERY = @QUERY + ' AND T.externalReference2 = ''' + @externalReference2 + '''' IF NOT @channelID IS NULL SET @QUERY = @QUERY + ' AND C.ID = ' + CONVERT(VARCHAR,@channelID) IF NOT @transactionTypeID IS NULL SET @QUERY = @QUERY + ' AND TT.transactionTypeID = ' + CONVERT(VARCHAR,@transactionTypeID) SET @QUERY = @QUERY + ')' SET @QUERY = @QUERY + 'SELECT * FROM Trans WHERE Row BETWEEN (' + CONVERT(VARCHAR,@PageIndex) + ' - 1) * ' + CONVERT(VARCHAR,@PageSize) + ' + 1 AND ' + CONVERT(VARCHAR,@PageIndex) + '*' + CONVERT(VARCHAR,@PageSize) SET @QUERY = @QUERY + 'OPTION (FAST 1)' EXEC(@QUERY) END </code></pre> http://stackoverflow.com/questions/1875655/why-icollection-index-does-not-work-when-instantiated 1 Why ICollection index does not work when instantiated? demokritos 2009-12-09T17:53:24Z 2009-12-10T11:11:07Z <p>When we declare a parameter as ICollection and instantiated the object as List, why we can't retrive the indexes? i.e.</p> <pre><code>ICollection&lt;ProductDTO&gt; Products = new List&lt;ProductDTO&gt;(); Products.Add(new ProductDTO(1,"Pen")); Products.Add(new ProductDTO(2,"Notebook"));</code></pre> <p>Then, this will not work:</p> <pre><code>ProductDTO product = (ProductDTO)Products[0];</code></pre> <p>What is the bit I am missing?<br> [Yes, we can use List as declaration an it can work, but I don't want to declare as list, like: </p> <pre><code>List&lt;ProductDTO&gt; Products = new List&lt;ProductDTO&gt;();</code></pre> <p>]</p> http://stackoverflow.com/questions/1879600/about-index-and-primary-key-in-sql 4 About index and primary key in SQL? luc 2009-12-10T08:53:52Z 2009-12-10T09:09:27Z <p>It may looks a naive question but I am wondering about the relationship between primary keys and indexes in most common SQL databases.</p> <p>Is it a standard rule for a SQL database to create automatically an index for every primary key? </p> <p>I am asking that because I am designing a model with Django and I am wondering if it is redundant to set both <code>primary_key=True</code> and <code>db_index=True</code>.</p> http://stackoverflow.com/questions/1837364/jquery-image-index-for-a-slideshow 0 jQuery image index for a slideshow papermate 2009-12-03T03:02:46Z 2009-12-03T03:16:44Z <p>I've made a small slideshow script to cycle through a list of images. The problem with it is selecting the current index during the next() and prev() functions.</p> <p>When viewing the slideshow, it performs one too many next()'s resulting in no image being shown for one slide. The index is too high. When click prev(), it seems to sit at 0 index (no image there) for a few clicks then kicks back in at 7.</p> <p>Here's the jQuery code</p> <pre><code>jQuery('.slideshow').css({'position': 'relative', 'width': 240, 'height': 263}).find('img').css('display', 'none'); jQuery('.slideshow').find('img').eq(startingSlide).css('display', 'block'); jQuery('.slideshow span').click(function() { if (jQuery(this).hasClass('span2')) { var currentSlide = jQuery('.slideshow img:visible').prevAll().length; jQuery('.slideshow').find('img').eq(currentSlide) .css('display', 'none').next('img').css('display', 'block').css({top: -300, left: 0}).animate({top: 0, left: 0}, 2000, 'easeOutBounce'); } else { var currentSlide = jQuery('.slideshow img:visible').prevAll().length; jQuery('.slideshow').find('img').eq(currentSlide) .css('display', 'none').prev('img').css('display', 'block').css({top: 300, left: 0}).animate({top: 0, left: 0}, 2000, 'easeOutBounce'); } }); </code></pre> <p>Any idea on how to fix the indexes?</p> http://stackoverflow.com/questions/1828653/mysql-query-optimization 0 Mysql query optimization Guoliang Cao 2009-12-01T20:24:45Z 2009-12-02T14:40:00Z <p>Hi,</p> <p>I am working on a Rails project and hitting a performance problem. Here is the simplified db schema</p> <pre> table gaming_platforms ( ~5 rows) id table games ( ~10k rows) id gaming_platform_id winner (black or white or n/a) black_id => online_players.id white_id => online_players.id table online_players ( ~1k rows) id gaming_platform_id username </pre> <p>Now given a username, I want to display players whose names match the input, with no. of games they played, won or lost. </p> <p>I created 3 views to avoid 1+n problem. </p> <pre> create or replace view online_player_games as select online_players.id as online_player_id, count(*) as games from games left join online_players on games.gaming_platform_id = online_players.gaming_platform_id and (games.black_id = online_players.id or games.white_id = online_players.id) group by online_players.id; create or replace view online_player_won_games as select online_players.id as online_player_id, count(games.id) as games from online_players left join games on games.gaming_platform_id = online_players.gaming_platform_id and ((games.winner = 1 and games.black_id = online_players.id) or (games.winner = 2 and games.white_id = online_players.id)) group by online_players.id; create or replace view online_player_lost_games as select online_players.id as online_player_id, count(games.id) as games from online_players left join games on games.gaming_platform_id = online_players.gaming_platform_id and ((games.winner = 2 and games.black_id = online_players.id) or (games.winner = 1 and games.white_id = online_players.id)) group by online_players.id; </pre> <p>Without using any index, it takes > 20 secs to query against those views. The query looks complicated. I am not sure which indexes I should create. Any opinions or suggestions are very welcome.</p> http://stackoverflow.com/questions/1714651/iphone-table-view-problem-with-indexpath-row 0 iPhone table view - problem with indexPath.row Yassin 2009-11-11T11:40:18Z 2009-12-01T18:42:21Z <p>I'm using indexPath.row do determine in which row of my tableview I do something. The title of my cells is containing a number which should be 1 in the first row and 18 in the last row, so I have 18 rows. This works for the first 11 rows, but after that, I have numbers in the title which seem to be generated randomly! Sometimes 16, then 5, then 18, then 12... and so on. What's the problem with it/why does the indexPath.row variable behave like that?</p> <p>My cellForRowAtIndexPath method:</p> <pre><code>- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath { static NSString *MyIdentifier = @"MyIdentifier"; UITableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:MyIdentifier]; if (cell == nil) { [[NSBundle mainBundle] loadNibNamed:@"myCell" owner:self options:nil]; cell = cell0; self.cell0 = nil; } UILabel *label; label = (UILabel *)[cell viewWithTag:1]; label.text = [NSString stringWithFormat:@"Cell %d", indexPath.row]; return cell; </code></pre> <p>}</p> <p>Any more suggestions on how to solve the problem? I didn't get it working until now...</p> <p>// Update with more code:</p> <p>Here is how I declare the cell. It is in an XIB file (template "empty XIB") in which I just put the cell from the library in IB.</p> <pre><code>@interface myViewController : UITableViewController { UITableViewCell *cell0; } @property (nonatomic, retain) IBOutlet UITableViewCell *cell0; </code></pre> <p>Then, at the top of the myViewController.m file:</p> <pre><code>@synthesize cell0; </code></pre> <p>My cellForRowAtIndexPath method is already posted above. It is equal to the cellForRowAtIndexPath method in the SDK documentation, and in Apple's example, it seems to work. </p> http://stackoverflow.com/questions/1673235/how-to-structure-an-index-for-group-by-in-sql-server 1 how to structure an index for group by in Sql Server. Craig 2009-11-04T11:33:02Z 2009-11-30T09:06:20Z <p>Hi,</p> <p>The following simple query takes a very long time (several minutes) to execute.</p> <p>I have an index: create index IX on [fctWMAUA] (SourceSystemKey, AsAtDateKey)</p> <pre> SELECT MAX([t0].[AsAtDateKey]) AS [Date], [t0].[SourceSystemKey] AS [SourceSystem] FROM [fctWMAUA] (NOLOCK) AS [t0] WHERE SourceSystemKey in (1,2,3,4,5,6,7,8,9) GROUP BY [t0].[SourceSystemKey] </pre> <p>The statistics are as follows:</p> <ul> <li>logical reads 1827978</li> <li>physical reads 1113</li> <li>read aheads 1806459</li> </ul> <p>Taking that exact same query and reformatting it as follows gives me these statistics:</p> <ul> <li>logical reads 36</li> <li>physical reads 0</li> <li>read aheads 0</li> </ul> <p>It takes 31ms to execute.</p> <pre> SELECT MAX([t0].[AsAtDateKey]) AS [Date], [t0].[SourceSystemKey] AS [SourceSystem] FROM [fctWMAUA] (NOLOCK) AS [t0] WHERE SourceSystemKey = 1 GROUP BY [t0].[SourceSystemKey] UNION SELECT MAX([t0].[AsAtDateKey]) AS [Date], [t0].[SourceSystemKey] AS [SourceSystem] FROM [fctWMAUA] (NOLOCK) AS [t0] WHERE SourceSystemKey = 2 GROUP BY [t0].[SourceSystemKey] UNION SELECT MAX([t0].[AsAtDateKey]) AS [Date], [t0].[SourceSystemKey] AS [SourceSystem] FROM [fctWMAUA] (NOLOCK) AS [t0] WHERE SourceSystemKey = 3 GROUP BY [t0].[SourceSystemKey] /* AND SO ON TO 9 */ </pre> <p>How do I make an index that does the group by quickly?</p> <p>Regards Craig.</p> http://stackoverflow.com/questions/1817079/how-to-get-the-index-of-select-option-tag 0 How to get the Index of select->option tag Vov4ik 2009-11-29T23:00:56Z 2009-11-29T23:14:40Z <pre><code>&lt;select id="sel"&gt; &lt;option value="123" selected="selected"&gt;text1&lt;/option&gt; &lt;option value="44"&gt;text2&lt;/option&gt; &lt;option value="882"&gt;text3&lt;/option&gt; ... &lt;/select&gt; </code></pre> <p>How to get the index of selected option with jQuery? May be <code>.index(subject)</code>, but all possibilities tested, didn't work...</p> <p>P.S. Indexes: value="123" => 0, value="44" => 1, ...</p> <p>Thanx</p> http://stackoverflow.com/questions/1815368/where-can-i-find-public-domain-open-source-list-of-softwares 1 where can i find public domain open source list of softwares unknown (google) 2009-11-29T12:16:03Z 2009-11-29T12:41:01Z <p>Hello all i like to browse open source software that are released as public domain type of software license , is there such list ? if i think about it is there some kind of index that sort open source applications by license ? Thanks </p> http://stackoverflow.com/questions/1812201/how-to-create-index-in-sap 0 How to create index in SAP ? Sake 2009-11-28T10:32:38Z 2009-11-29T04:19:56Z <p>Currently we are interfacing our application with SAP. We are having a lot of performance problems with bapi/rfc approach. So recently we are trying "direct sql" approach to retrieve some data from SAP. Unfortunately, we've found that some of SAP table does not equipped with proper indices for our scenario.</p> <p>We've tried creating index with SAPGUI, but found that the real "database index" was not actually created. Index created with direct DDL will later cause trouble with SAP transport mechanism.</p> <p>What is the proper way to create an index in SAP database ?</p> <p>(We are using SAP R3 on Oracle Database)</p> http://stackoverflow.com/questions/1813733/is-there-any-way-to-repair-help-index-for-visual-studio-2008 1 Is there any way to repair help index for Visual Studio 2008? Vilx- 2009-11-28T20:39:31Z 2009-11-29T01:11:15Z <p>Seems that my VS2008 help index has finally become FUBAR. It's already a known issue that after installing SQL Books Online 2008 SP1 a lot of inter-topic links break down, but this is even worse. When index entries start pointing to completely unrelated topics and things like "System.Collections.IList namespace" appear - then you know you are in trouble.</p> <p>So... is there a way to regenerate the index and whatever other data structures the help has? I don't want to reinstall it to factory defaults, because there are quite a few other help collections in there too and I don't want to lose those.</p> http://stackoverflow.com/questions/1800698/query-to-check-index-on-a-table 2 query to check index on a table sine 2009-11-25T23:37:46Z 2009-11-26T12:19:19Z <p>i need a query to see if a table already has any indexes on it.</p> http://stackoverflow.com/questions/1799020/mysql-resetting-the-index-count-to-0 0 MySQL Resetting the index count to 0 Jonathan Kushner 2009-11-25T18:30:36Z 2009-11-25T18:43:39Z <p>I need to reset my table counter back to 0 - is there a MySQL command for this?</p> http://stackoverflow.com/questions/1797205/jquery-get-certain-element-from-selector 2 jQuery: get certain element from selector Fuxi 2009-11-25T14:22:28Z 2009-11-25T14:26:27Z <p>i searched the docs and couldnt find it :(</p> <p>let's say i'm selecting all elements like:</p> <pre><code>var items = $(".myClass"); </code></pre> <p>it returns eg. 5 items - now how can i grab select eg. the 2nd one? items(2) or items[2] doesnt work ..</p> http://stackoverflow.com/questions/1787783/changing-index-page-ruby-on-rails 2 Changing Index Page - Ruby on Rails bgadoci 2009-11-24T04:27:35Z 2009-11-24T17:24:06Z <p>I am new to rails so go easy. I have developed my blog and deployed it successfully. The entire app is based out of the post_controller. I am wondering how I can reroute the users path to default to the post_controller vs. the app controller. </p> <p>To illustrate, if you go to <a href="http://mylifebattlecry.heroku.com" rel="nofollow">http://mylifebattlecry.heroku.com</a> you will see the default rails page. If you go to <a href="http://mylifebattlecry.heroku.com/posts" rel="nofollow">http://mylifebattlecry.heroku.com/posts</a> you will see the the app. Once I complete this I will change my domain of <a href="http://www.mylifebattlecry.com" rel="nofollow">http://www.mylifebattlecry.com</a> to map to Heroku but need to know how to get the /posts to be where the visitor is sent. </p> http://stackoverflow.com/questions/1258095/rails-in-place-editing-of-attributes-via-an-index-page 0 (Rails) In-place editing of attributes via an "index" page. humble_coder 2009-08-11T01:42:26Z 2009-11-22T12:00:05Z <p>Hi All,</p> <p>I'm looking to use "in_place_editor_field" on an "Index" page of items. Basically I want to mimic spreadsheet functionality for pre-existing line items in order to edit their attributes. However, none of the "in_place_editor" examples I've seen provide any useful real-world application of this nature. </p> <p>Also, a lot of the existing code examples don't work. I'm aware that the code was removed from Core, but even after installing it as a plugin, it doesn't seem to do anything.</p> <p>Any ideas?</p> <p>Best.</p> http://stackoverflow.com/questions/1770032/using-index-in-oracle 0 Using Index in oracle Sachin Chourasiya 2009-11-20T11:57:02Z 2009-11-20T12:38:42Z <p>How to use index in a select query in oracle? When creating indexes can enhance performance?</p> <p>How to use indexed explicitly?</p> http://stackoverflow.com/questions/1751685/xsl-recursive-loop-node-by-index 0 xsl recursive loop node by index Ben 2009-11-17T20:52:37Z 2009-11-18T10:17:27Z <p>I have created a recursive template for getting the first n number of items from my XML.</p> <p>It uses an index(counter) just like how I would in a for loop. Now how can I get a node from my XML using the index?</p> <p>I have tried [position()=$index] but it had weird behaviour when trying to get deeper nodes in the XML hierarchy.</p> <p>If I have XML such as:</p> <pre><code>&lt;0&gt; &lt;1&gt; &lt;2&gt;item&lt;/2&gt; &lt;2&gt;item&lt;/2&gt; &lt;2&gt;item&lt;/2&gt; &lt;2&gt;item&lt;/2&gt; &lt;2&gt;item&lt;/2&gt; &lt;2&gt;item&lt;/2&gt; &lt;/1&gt; &lt;/0&gt; </code></pre> <p>I want to be able to count through and copy the 2's until I have as many as I want.</p> http://stackoverflow.com/questions/1731149/different-settings-in-my-cnf-are-causing-max-key-length-is-1000-bytes-error 0 Different settings in my.cnf are causing "max key length is 1000 bytes" error Brian Deacon 2009-11-13T18:56:49Z 2009-11-17T20:05:29Z <p>Edit: This may be a 5.0-specific bug. (I'm on 5.0.83). Removing the innodb_log_file_size setting gets rid of the problem. Which makes complete sense. Not.</p> <p>Googling about finds a handful of similar, but not identical problems in 5.0 that were patched later.</p> <p>With the "wrong" settings in my.cnf, this create statement on MySQL 5.0 will give me the "Specified key was too long; max key length is 1000 bytes".</p> <pre><code>CREATE TABLE ReproduceTheProblem ( COLUMN_ONE varchar(200) character set utf8 default NULL, COLUMN_TWO varchar(200) character set utf8 default NULL, KEY ThisKeyBreaks(COLUMN_ONE, COLUMN_TWO) ) ENGINE=InnoDB DEFAULT CHARSET=latin1; </code></pre> <p>In trying to improve performance, I arrived at my.cnf settings that perform well but get the "key was too long" error. I do have my.cnf settings that can create this key, but that perform terribly on importing data into a different, very large table.</p> <p>The settings that work but perform badly (and which have some whacky values from my attempting to dial different settings in):</p> <pre><code>[client] port = 3306 socket = /tmp/mysql.sock [mysqld] port = 3306 socket = /tmp/mysql.sock skip-locking key_buffer_size = 384M max_allowed_packet = 1024M table_cache = 256 max_sp_recursion_depth=255 sort_buffer_size = 2M read_buffer_size = 2M read_rnd_buffer_size = 8M myisam_sort_buffer_size = 64M myisam_max_sort_file_size = 30G thread_cache_size = 8 query_cache_size= 16M thread_concurrency = 8 max_heap_table_size = 9900000 skip-federated log-bin=mysql-bin server-id = 1 [mysqldump] quick max_allowed_packet = 256M [mysql] no-auto-rehash [isamchk] key_buffer = 256M sort_buffer_size = 256M read_buffer = 2M write_buffer = 2M [myisamchk] key_buffer = 256M sort_buffer_size = 256M read_buffer = 2M write_buffer = 2M [mysqlhotcopy] interactive-timeout </code></pre> <p>The settings that perform well, but give me the key length error:</p> <pre><code>[client] port = 3306 socket = /tmp/mysql.sock [mysqld] port = 3306 socket = /tmp/mysql.sock max_allowed_packet = 200M table_cache = 256 query_cache_type = 1 query_cache_limit = 20M query_cache_size = 500M long_query_time = 2 thread_cache_size = 1000 thread_concurrency = 4 innodb_thread_concurrency = 4 old_passwords = 1 max_connections = 1000 max_sp_recursion_depth = 255 server-id = 0 innodb_buffer_pool_size = 800M innodb_additional_mem_pool_size = 50M innodb_log_file_size=50M innodb_log_buffer_size = 200M innodb_flush_log_at_trx_commit = 1 innodb_lock_wait_timeout =50 [mysqldump] quick max_allowed_packet = 200M [mysql] no-auto-rehash </code></pre> http://stackoverflow.com/questions/1648887/hibernate-updating-database-structure-with-new-indexes 1 Hibernate updating database structure with new indexes FoxyBOA 2009-10-30T09:48:57Z 2009-11-17T09:56:43Z <p>Hi All.</p> <p>It's well known fact that hibernate work with indexes in a very strange way. It generate them only if you create a database schema from the scratch. But if you try to update the database schema hibernate will ignore new indexes.</p> <p>My question is, does anybody find a solution how to ask hibernate generate SQL for new indexes during schema update.</p> <p><strong>UPDATE:</strong> I'll disagree with <a href="http://stackoverflow.com/users/27343/stefan-steinegger">Stefan Steinegger</a>. Index management with hibernate it's a pain. Nice to see that the feature was scheduled for next release (3.5.x) and will be backward compatible to 3.3.x and 3.2.x as well. Details are <a href="http://opensource.atlassian.com/projects/hibernate/browse/HHH-1012" rel="nofollow">here</a>.</p> http://stackoverflow.com/questions/1740582/why-dont-databases-intelligently-create-the-indexes-they-need 1 Why don't databases intelligently create the indexes they need? Horace Loeb 2009-11-16T07:18:00Z 2009-11-16T08:17:36Z <p>I just heard that you should create an index on any column you're joining or querying on. If the criterion is this simple, why can't databases automatically create the indexes they need?</p> http://stackoverflow.com/questions/1734368/why-would-oracle-ignore-a-perfect-index 2 Why would Oracle ignore a "perfect" index? Aaron Digulla 2009-11-14T14:29:52Z 2009-11-16T06:02:12Z <p>I have this table:</p> <pre><code>create table demo ( key number(10) not null, type varchar2(3) not null, state varchar2(16) not null, ... lots more columns ... ) </code></pre> <p>and this index:</p> <pre><code>create index demo_x04 on demo(key, type, state); </code></pre> <p>When I run this query</p> <pre><code>select * from demo where key = 1 and type = '003' and state = 'NEW' </code></pre> <p><code>EXPLAIN PLAN</code> shows that it does a full table scan. So I dropped the index and created it again. <code>EXPLAIN PLAN</code> still says full table scan. How can that be?</p> <p>Some background: This is historical data, so what happens is that I look up a row with state <code>CLEARED</code> and insert a new row with state <code>NEW</code> (plus I copy a few values from the old row). The old row is then updated to <code>USED</code>. So the table always grows. What I did notice is that the cardinality of the index is 0 (despite the fact that I have thousands of different values). After recreating, the cardinality grew but the CBO didn't like the index any better.</p> <p>The next morning, Oracle suddenly liked the index (probably slept over it) and started to use it but not for long. After a while, the processing dropped from 50 rows/s to 3 rows/s and I saw again "FULL TABLE SCAN". What is going on?</p> <p>In my case, I need to process about a million rows. I commit the changes in batches of ca. 50. Is there some command which I should run after a commit to update/reorg the index or something like that?</p> <p>I'm on Oracle 10g.</p> <p>[EDIT] I have 969'491 distinct keys in this table, 3 types and 3 states.</p> http://stackoverflow.com/questions/1661796/why-doesnt-perl-support-the-normal-operator-to-index-a-string 5 Why doesn't Perl support the normal [] operator to index a string? jcyang 2009-11-02T15:02:10Z 2009-11-16T00:54:47Z <p>Why doesn't Perl support the normal [] operator to index a string? Almost all major programming languages support this operator,esp the other two 'P': <strong>python</strong> and <strong>php</strong>.Moreover,I do think it should be easy to implementate this little syntax.Also,as the philosophy of the perl programming language -- as lazy as we could,so why do we bother to use function to index string?</p> <p>Will Perl 6 support this syntax?</p> <p>thanks.</p> http://stackoverflow.com/questions/1738267/apache-deploying-a-new-site-to-the-server 0 Apache: Deploying a new site to the server Rosarch 2009-11-15T17:59:46Z 2009-11-15T18:25:55Z <p>I have a site currently live on a domain. I would like to switch it to a new site, that is currently in a password protected sub directory on this server.</p> <p>I have a "Site Maintenance in Progress" page. I want to set Apache so it displays that by default instead of "index.php". Also, I'd like everything else on the server to be password protected while I make the switch (although that's not essential, I guess).</p> <p>I added this to the <code>.htaccess</code> file in <code>public_html</code>:</p> <pre><code>DirectoryIndex siteDown.php </code></pre> <p>Unfortunately, this doesn't do anything. I can navigate to <code>http://www.example.com/siteDown.php</code> just fine.</p> <p>I'm on a shared hosting setup. Could that be a problem?</p> http://stackoverflow.com/questions/1731272/getting-only-one-dimension-of-indexes-from-the-getselectedindexes-function-in-qt 0 Getting only one dimension of indexes from the getSelectedIndexes function in QT? Paul Wicks 2009-11-13T19:19:10Z 2009-11-13T20:47:30Z <p>I'm working on a small project in QT (well, pyQT4 actually, but it shouldn't matter too much) and I've run into the following problem. I have a <code>QTableView</code> with several rows and columns. I have set the selection mode to be rows only. When I call <code>getSelectedIndexes()</code> on my <code>QTableView</code>, I get an index for every row and column, which in the current setup means that I get an extra 5 Indexes for each selected row, which is less than ideal, since I only need to know the row, not the column. Is there any way to get just one Index per row other than filtering the list that I get from <code>getSelectedIndexes()</code>?</p> http://stackoverflow.com/questions/1730283/rename-foreign-key-system-name-in-sql-server-management-studio-is-failing 1 Rename foreign key system name in SQL Server Management Studio is failing hal10001 2009-11-13T16:23:32Z 2009-11-13T17:53:41Z <blockquote> <p>The method or operation is not permitted.</p> </blockquote> <p>I assume this is a permission's issue, but I can't figure out where I would change it. It is strange because I can rename an index with no issue.</p> <p>EDIT:</p> <p>If you're looking at a table, and you see "Columns, Keys, Constraints, etc.", this is under Keys, and it is the system name that I presume SQL is using to identify the foreign key name I gave the column.</p>