An index contains keys built from one or more columns in the table, or view, and pointers that map to the storage location of the specified data.
0
votes
0answers
12 views
Creating a unique constraint on a combination of columns that can be null in SQL
How can I add a unique constraint on a combination of columns, (few of which can be NULL) in SQL ?
Suppose I have 4 columns A,B,C and D , I want the combination of these columns to be unique. Of ...
0
votes
0answers
32 views
Index I created didn't help too much
so I created an index to help a really long 28 minute qry run faster and it doesn't seem to have helped to much.
This is the Index I created
USE [NLTR201212_test]
GO
CREATE NONCLUSTERED INDEX [Billys ...
-3
votes
0answers
50 views
How to make query more efficient [closed]
I am working on the query below. At a glance I am wondering if there are any easy fixes, in terms of the query, to help speed it up. The querying is running for a very long time - not very ...
0
votes
2answers
40 views
GUID clustered PK's faster than BIGINT and INT identity PK's on SQL Server 2012 Express?
I'm developing a database-intensive application which maintains about 5 tables. These tables contain many thousands of records each. All the tables use GUID clustered primary keys. To make it ...
5
votes
3answers
67 views
Why am I allowed to have two indices with the same name?
I have a large .sqlproj project. In one .sql file I have one table definition:
CREATE TABLE [dbo].[TableOne] (
[ColumnName] UNIQUEIDENTIFIER NULL
);
GO
CREATE UNIQUE CLUSTERED INDEX ...
0
votes
0answers
4 views
MySQL Partitioning Unique Key
I am following this article:
http://www.chrismoos.com/2010/01/31/mysql-partitioning-tables-with-millions-of-rows
But when I run my query to partition my product table (that contains 500,000 rows) I ...
1
vote
1answer
22 views
PHP: If String[Index] is in Array, PHP: String from String[1] to String[last]
Is there a PHP call for in_str?
…something similar to in_array..
Am using an if-else to take the each word (string) in the array of strings (from a form-input-text) to see if the start index [0] is ...
1
vote
1answer
21 views
Oracle 11g Reference Partitioning and Indexes
I have a parent table containing the following columns:
- PARENT_ID: UUID
- EVENT_DATE: TIMESTAMP
- DATA_COLUMN1: VARCHAR2(255)
- DATA_COLUMN2: VARCHAR2(255)
The table is range partitioned ...
-1
votes
3answers
39 views
Using indexes in SSMS to increase Query efficiency [closed]
Currently we are running SSMS 2008 and we currently have a Sql with 3 inner joins (1 table containing nearly 300,000 rows, and 2 other qry's).
This query took 28 minutes to run which is far too long. ...
0
votes
1answer
22 views
MySQL Indexes for random queries across 1.5M lines table
I have a pretty big mysql table of 1.5 Millions lines.
There are 7 columns identifying the Data with labels (varchar), and 38 Columns containing Numeric (Decimal) Data;
The data are organized that ...
1
vote
1answer
24 views
mongodb indexes covered queries
There is a sample http://docs.mongodb.org/manual/tutorial/create-indexes-to-support-queries/#indexes-covered-queries
any of the indexed fields are fields in subdocuments. To index fields
in ...
0
votes
1answer
48 views
mongodb does not use indexes for $exists and $elemMatch
My document structure looks like this
{
"_id" : "311acd33a0ae8dcc3101246f90af9dc5",
"created_datetime" : ISODate("2013-04-05T10:35:31.143Z"),
"installs" : [
{
"status" ...
-1
votes
1answer
34 views
Best approach of mysql query: Get records from multiple tables, using an id
What is the most efficient way to get records from 3 tables, using an id that exists in all tables to link the data?
First table: id is NOT a primary key. Many records have the same id value. This ...
0
votes
0answers
21 views
mongodb: trying to remove unique key
Trying to remove a 'unique' key from my mongoDB without success...
So , my Schema is this, ( using mongoose js )
var Market = new Schema({
marketId : { type: String, required: false, unique: ...
1
vote
1answer
18 views
MongoDB Geospital compound indexing return error
I am trying to make an index over my collection in MongoDB. But I am getting error of
point not in interval of [ -180, 180 ]
This is the query I am trying to run.
...
0
votes
0answers
35 views
Shouldn't the query optimizer still choose a hash join when I add a new index?
I had this query
SELECT Equipment.EquipmentId, ServiceStartDate FROM Service, Equipment
WHERE Service.EquipmentId = Equipment.EquipmentId
AND Vendor LIKE 'VEND: 1' AND ServiceType = 'failure';
...
0
votes
1answer
29 views
mysql explain and inner join not working as expected for me at least
this is driving me crazy, im trying really hard to make a join with 3 tables on mysql, what i want is, to select all suscriptors a user is suscribed to, and for it, i got this tables
user(id, nombre)
...
2
votes
2answers
63 views
Dropping unnecessary indexes - effect on query plans in SQL Server 2005
Below is a portion of the index mess we have on a 2MM record table (SQL Server 2005). Clearly there are opportunities to pear them down. This table has 16 indexes altogether, including a clustered PK ...
1
vote
1answer
40 views
python pandas index is_unique not working
I'm new to python so please call me on not including relevant information.
I've installed python, ipython, and am using the notebook on an Ubuntu installation in a VM.
I'm working through examples ...
0
votes
1answer
30 views
Autocompleteview with custom list item is not working as expected
I would like to use the android autocomplete text view with custom dropdown list items (not only the string will be included). It works in a special way: it finds the corresponding items in my ...
0
votes
1answer
49 views
Read lines at different indexes
Here is some code i put together to search for numbers in a text file. It work's great for what i'm trying to do. right now it finds 7 locations and i need to read the lines at the 7 different ...
0
votes
3answers
45 views
How do I create a subset of an array based on an array of indexes for that array in Ruby
If I have an array like this:
[1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20]
and I want to select a subset of that array based on this arbitrary array of indexes:
[0,1,4,7,8,13,14,15,18,19]
...
2
votes
2answers
45 views
PHPUNIT mock with at() feature works weird
here is the following code sample
<?php
interface iFS
{
public function read();
public function write($data);
}
class MyClass
{
protected $_fs = null;
public function ...
3
votes
2answers
58 views
Get parent's index() value of the child
How do I get the parent element's index value in relation to the document, of the clicked child, $(this), element?
HTML
<html>
<body>
<header>
<div ...
3
votes
5answers
63 views
MySQL query takes too long — what should be the index?
Here is my query:
CREATE TEMPORARY TABLE temptbl (
pibn INT UNSIGNED NOT NULL, page SMALLINT UNSIGNED NOT NULL)
ENGINE=MEMORY;
INSERT INTO temptbl (
SELECT pibn,page FROM mytable
WHERE ...
0
votes
1answer
43 views
Letter Bar while scrolling by indexes UITableView
I have something like this
http://www.allappsdevelopers.com/images/TopicImages/TableView%20in%20iphone/index.png
And i also want to show something like MBProgressHud while scrolling by these ...
0
votes
2answers
64 views
C# class attributes, get them by index
Is it possible to access attributes by index?
Take class Person for instance, which could have attributes "BirthNo" and "Gender". If I want to access BirthNo's value, is it possible in any way to ...
1
vote
2answers
29 views
MySQL indexes when multiple are possible
Given the following -
drop table if exists learning_indexes;
create table learning_indexes (
id INT NOT NULL,
col1 CHAR(30),
col2 CHAR(30),
col3 CHAR(30),
PRIMARY KEY (id),
...
0
votes
1answer
67 views
Add an index to improve performance of this query?
Using: Firebird 2.52
For performance of SELECT for the following query, do I require indexes on additional fields in my table:
Desired query:
select inventory_id, max(batch_no) from invty_batch
...
2
votes
2answers
105 views
Identifying an index out of bounds in C#
So I have this code that sorts fictional census data from a txt. file:
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.IO;
class Program
{
...
0
votes
3answers
59 views
SQL indexes and update timing
I have a table with 50 columns and non-clustered indexes for about 10 columns (FKs). The table contains about 10 million records.
My question is: when is the index updated during the update of 10k ...
1
vote
1answer
50 views
Disabling indexes for a SqlBulkCopy errors out
I'm trying to improve the peformance of a call to SqlBulkCopy.WriteToServer(Datatable).
One of the suggestions I've seen is to temporarily disable the indexes on the table before the call to ...
2
votes
1answer
117 views
Is this long running select query running optimally?
I have a long running query (~10 minutes) that is generated by an application which I cannot control. However the underlying tables that the query runs on are in my control. I am pasting the query and ...
4
votes
3answers
75 views
Is it OK to create several indexes on a table if they're really needed
I have a table with 7 columns.
It's going to contain lots and lots of data - something like more than 1.7 million records will be added every month.
Of those 7 columns 5 are the ones that I'll be ...
0
votes
0answers
63 views
How can I solve this MySQL Foreign Key Error 150?
Question is now resolved
Here is what was wrong: I had set the "id" column on the "files" table to "not null". I then told the foreign key to, should the parent be deleted, set the "id" column to ...
1
vote
1answer
50 views
MySQL query optimization left join indexes exist
I'm struggling with the optimization of a MySQL query.
select *
from course as t1
left join semester as t3 on t1.semester=t3.id
where t1.visibleFrom <= '1364621522'
and '1364621522' <= ...
2
votes
5answers
101 views
How to get specific value within an array of arrays
I have an array (outside array) that contains three arrays (inside arrays), each of which have three elements.
array = [[a, b, c], [d, e, f], [g, h, i]]
I want to select the specific inside array ...
1
vote
2answers
23 views
python setting value to list elements
Basically what I'm trying to do is, create a nestled list and set a value of one of its element as a function of other elements in the list.
>>> a = [[1]*5]*5
>>> a
[[1, 1, 1, 1, ...
0
votes
1answer
32 views
searching with multiple parameters with mongodb
How is fine-grained search achiveable with mongodb, without the use of external engines? Take this object as example
{
genre: 'comedy',
pages: 380,
year: 2013,
...
1
vote
2answers
31 views
Interchangeable NONCLUSTERED and UNIQUE index on a same column
I have these two indexes on a table and I wonder whether they are interchangeable?
The thing is that when I look at the usage statistics I see that both are being used.
What will happen if I delete ...
0
votes
0answers
44 views
Why would adding a duplicate index make MYSQL use the correct index (not the dup)?
I am doing a select while left joining a "building" table. For some reason MYSQL will only use the "project-deleted" index on this table (which makes the most sense) if I add an extra, duplicate ...
1
vote
0answers
87 views
constructing an ISAM tree
i am having a bunch of nodes holding some data . this can be considered as leaf nodes.
I want to build an ISAM tree over these nodes. Is there a standard way of creating the non leaf nodes of an ISAM ...
0
votes
6answers
407 views
How to use index in SQL query
Well i am new to this stuff ..I have created an index in my SP at start like follows
Create Index index_fab
ON TblFab (Fab_name)
Now i have query under this
select fab_name from TblFab where artc ...
2
votes
1answer
35 views
Size of all indexes on a mysql database
There are 6 databases on my server.
In phpmyadmin, I can view the list of tables that comprise a database and see things like # of records, table name, table type, etc. It also shows the size and a ...
-2
votes
2answers
68 views
list produces specific set of combinations
I have a C# list:
A
B
A
C
D
A
How can I find all the combinations of letters in which the index of the following letter is always bigger. So in this case, combinations could be: A, AB, ABA, C, ...
0
votes
1answer
54 views
Index out of range while executing results from db
I'm having a problem while trying to simply execute data from rows from db (sqlite3). The DB input has 4 fields, therefore once entered they're being saved. But here's my problem, where I execute all ...
0
votes
2answers
45 views
Will this MySQL index increase performance?
I have the following MySQL table:
CREATE TABLE `my_data` (
`id` int(10) unsigned NOT NULL AUTO_INCREMENT,
`tstamp` int(10) unsigned NOT NULL DEFAULT '0',
`name` varchar(255) NOT NULL DEFAULT ...
0
votes
0answers
20 views
Search on table joined to key-value table
I have a scenario where we have two tables, let's call them TASKS and TASK_ATTRIBUTES.
TASKS
- clientId
- taskId
- name
- status (one of 10)
- openDate
- exceptionCode
- priority (value ...
1
vote
2answers
133 views
matrix index notation in C++
Can I index a multidimensional array with a single index?
Ex:
in memory, a multidimensional array is indexed like a single array
(example in a matrix 2x2, matrix[1][1] is the fourth element of ...
0
votes
0answers
44 views
mysql optimizatin
I would like to ask you for help with optimizing part of an e-shop application. I have a database running on MySQL and I am struggling with performance when doing large product imports. In particular, ...




