0
votes
0answers
12 views
Linq to SQL nvarchar problem
Hi,
I have discovered a huge performance problem in Linq to SQL.
When selecting from a table using strings, the parameters passed to sql server are always nvarchar, even when the …
0
votes
3answers
23 views
jQuery element index in array
I have several images loaded into the DOM via jQuery. Each image has 'display: none' aside from one which is 'display: block'. It's this image which I need to find the index of onc …
0
votes
3answers
24 views
SQL Server wide indexes with many include columns
Should I be careful adding too many include columns to a non-cluster index?
I understand that this will prevent bookmark look-ups on fully covered queries, but the counter I ass …
0
votes
2answers
17 views
TableView oval button for Index/counts
Can someone help me create an index/count button for a UITableView, like this one?
Is there an Apple example, or other tutorial? Thanks, Jordan
0
votes
6answers
60 views
PHP array problem
I have an array like this. What i want is to get the value of the index for specific values. ie, i want to know the index of the value "UD" etc.
Array
(
[0] => LN
[1] = …
4
votes
7answers
284 views
Why doesn’t Perl support the normal [] operator to index a string?
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': python and php.Moreover,I do …
0
votes
3answers
27 views
solr + Heritrix
how is it possible to integrate solr with heritrix ?
I want to archive a site using heritrix and then index and search locally this file using solr.
thanks
0
votes
1answer
43 views
How does Delphi Retrieve index for IndexName property of TTable?
Dear Gurus:
Here is a question about how Delphi querys the indexes from another schema in Oracle(10.2.0.4). The follow is the scenario:
There is a primary key(says myTablePK) of …
1
vote
2answers
43 views
how to structure an index for group by in Sql Server.
Hi,
The following simple query takes a very long time (several minutes) to execute.
I have an index: create index IX on [fctWMAUA] (SourceSystemKey, AsAtDateKey)
SELECT MAX([t0 …
0
votes
1answer
33 views
UITableView Indexing problem
I have an indexed table view that organizes cities in a state by their first letter. What I have working is an NSMutableDictionary is created with the keys of A,B,C,etc. and the co …
0
votes
2answers
30 views
Get the static text contents of a web page
Hi all!
I have a search bar in my web site that searches for all the pages in the web site that contain a particular keyword. This is achieved by querying an Indexing Server catal …
0
votes
4answers
42 views
How worth is it to assign an FK Index?
I'm a normal "would be DBA" level developer. I've been handling some databases with a few million records. A lot goes around importing data between database and its clone and then …
0
votes
2answers
29 views
Alter column drops index
I have a table
CREATE TABLE table1(
[classe] [char](30) NOT NULL,
[code] [char](30) NOT NULL,
[description] [varchar](255) NULL,
[codelangue] [char](2) NULL
) ON [PRIMARY]
…
1
vote
1answer
43 views
Hibernate updating database structure with new indexes
Hi All.
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 upda …
1
vote
8answers
182 views
Index, assignment and increment in one statement behaves differently in C++ and C#. Why?
Why is this example of code behaving differently in c++ and C#.
[C++ Example]
int arr[2];
int index = 0;
arr[index] = ++index;
The result of which will be arr[1] = 1;
[C# Exam …
