Tagged Questions

0
votes
1answer
66 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 …
1
vote
3answers
301 views

Changing newid() to newsequentialid() on an existing table

Hi, At the moment we have a number of tables that are using newid() on the primary key. This is causing large amounts of fragmentation. So I would like to change the column to use newsequentialid() …
2
votes
2answers
480 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 …
4
votes
9answers
944 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 …
2
votes
9answers
996 views

asp.net, stateserver, NLB, session lost.

Hello everyone, 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 …
0
votes
4answers
225 views

Is this a bad indexing strategy for a table?

The table in question is part of a database that a vendor's software uses on our network. The table contains metadata about files. The schema of the table is as follows Metadata ResultID (PK, int, …
0
votes
1answer
47 views

Generic error when trying to save data

Hi all, 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 …
2
votes
9answers
391 views

Indexing vs. no indexing when inserting records

I have a few questions about whether or not it would be best to not use indexing. BACKGROUND: My records have a timestamp attribute, and the records will be inserted in order of their timestamps …