Tagged Questions
The clustered tag has no wiki summary.
9
votes
9answers
4k views
Should I get rid of clustered indexes on Guid columns
I am working on a database that usually uses GUIDs as primary keys.
By default SQL Server places a clustered index on primary key columns. I understand that this is a silly idea for GUID columns, and ...
5
votes
1answer
140 views
Using GUID as PK in big partitioned MySQL table
We have a huge InnoDB table with hundreds of millions of rows and only 3 columns: GUID, enum, smallint.
All lookups are done by GUID.
We're considering making GUID the PK and partitioning it BY KEY.
...
3
votes
3answers
169 views
How can we ensure that there is a single instance of a class in a clustered environment
How can we ensure that there is a single instance of a class in a clustered environment? The class is Serializable.
2
votes
0answers
220 views
How to create a clustered bar graph using Prefuse?
I was able to create a single bar graph using the code from Samir Talwar by modifying the renderer as the following:
vis.setRendererFactory(new RendererFactory() {
Renderer yAxisRenderer = ...
2
votes
5answers
230 views
Where clause on non-clustered index Vs extra join and where clause on clustered index
I am trying to eak out a bit extra performance from some sql queries which have a where clause on a field which is a non-unique non-clustered index, it is also a foreign key in table A. That foreign ...
2
votes
2answers
146 views
How to drop clustered property but retain primary key in a table. SQL Server 2005
i have the following key:
ALTER TABLE dbo.Table ADD CONSTRAINT PK_ID PRIMARY KEY CLUSTERED
(
ID ASC
)
so i have clustered index and primary key on ID column.
Now i need to drop clustered index (i ...
2
votes
1answer
123 views
So what's the difference between distributed and clustered?
I've heard these two terms quite many times,
but always confused.
My guess:
for distributed servers,each server has its own unique data to serve
for clustered servers,each server is supposed to ...
2
votes
3answers
3k views
java.io.IOException: Invalid argument
Hi
I have a web application running in cluster mode with a load balancer.
It consists in two tomcats (T1, and T2) addressing only one DB.
T2 is nfs mounted to T1. This is the only dofference between ...
2
votes
9answers
2k views
asp.net, stateserver, NLB, session lost
1st post on stackoverflow, hope to have great feedback :)
I'm currently trying to load balance our web site. We have set up a 2 cluster NLB on windows server 2003 with IIS 6.
While testing the ...
1
vote
0answers
21 views
file server to replace a clustered file system
For various maintenance, stability and backup reasons I need to replace a 10 node (10 Linux hosts) ocfs2 shared filesystem with something that does not rely on a shared disk. The client applications ...
1
vote
1answer
101 views
Setting clustered index in nhibernate
I'm trying to define a property that is not the id as a clustered index in nhibernate, yet I've found no way of doing this.
Could anyone give me a pointer of how this is done, or it is something not ...
0
votes
1answer
64 views
User Session Management in Restful Web Services in session shared clustered environment
I am trying to setup an control server application with Spring-JPA back-end and Restful web services to expose the back-end methods. My user sessions and authentication/authorization has to be handled ...
0
votes
0answers
18 views
Simulate Clustered and Non clustered Tables in a Database
When a relation in a database is clustered, then the No of Disk Accesses required to fetch the table from Disk to Main memory is proportional to the number of blocks B that the table resides in.
On ...
0
votes
2answers
41 views
Clustered cache in Jboss 3.2.6 version
I have a requirement of clustered cache in JBoss version 3.2.6.
Is Clustered cache possible in Jboss 3.2.6 version or not?
And if yes than please provide any references since I have looked up for it ...
0
votes
1answer
153 views
Using Tokens in SQL Job Setup SQL Server 2008
OS: Windows 2008 Server R2 |
SQL Version: SQL Server 2008 R2 |
Env: Clustered (Failover)
I have SSIS packages that are stored in the local file system and the "Packages" folder that contains all the ...
0
votes
1answer
320 views
How to JNDI lookup from cluster 1 : a queue that exists in cluster 2 in Websphere 6?
I have a Websphere topology wherein in Cluster1, I have an MDB that's trying to publish to another MDB that resides in Cluster2. Since they're both in the same container, I tried simply
...
0
votes
2answers
130 views
Coldfusion - Getting Massive Error Reports - No Problems Indicated By Users
Ok, here is the background. We have a clustered environment setup for running our coldfusion server, it basically split into two different instances, that the generic address redirects requests to. I ...
0
votes
1answer
62 views
Generic error when trying to save data
we have just experienced a weird error on our applications connecting to a clustered Sql Server 2000: both our .NET applications (ADO.NET) and C++ (ADO) application get an error which we cannot ...