Viewing 15 posts - 1 through 15 (of 21 total)
I added full text index on the DESCRIPTION column and ran the query. It did not improve the performance.
I believe syntax is also different from the query while using...
March 4, 2008 at 2:52 pm
The reason, Incident Description is not included in index is that it is ntext data type.
March 4, 2008 at 12:09 pm
As far as why we require the other fields in the query just to get the count, I have sent this question to the developers since this query is being...
March 4, 2008 at 11:59 am
I ran this query that was mentioned earlier in the one of the responses
SELECT count(*)FROM [MAGICSSHD].[Incident] WITH (NOLOCK)WHERE [State:] = N'C'...
March 4, 2008 at 11:53 am
Here is the view that the query is retrieving from. The earlier script is from DDL of the table that this view is using
CREATE view "MAGICSSHD"."Incident" AS SELECT...
March 4, 2008 at 11:51 am
Here is the DDL script for the table in the customer's database that they have customized.
CREATE TABLE [_SMDBA_].[_TELMASTE_] (
[SEQUENCE] [int] NOT NULL ,
[LASTMODIFIED] [datetime] NOT NULL ,
[LASTUSER] [nvarchar] (30) NULL...
March 4, 2008 at 11:39 am
Thanks for the reply. I found out that just now. Do you think this has been changed in SQL 2005.
January 26, 2006 at 9:57 am
Thanks for the script to use BCP. Will this script handle if the table's data has non-english data as well?
October 6, 2005 at 12:28 pm
I have trying to avoid scripting all the triggers if I have to go this route. I could give it a try.
For char & varchar, I run Alter table Alter...
October 6, 2005 at 11:49 am
I don't know if SQL Server will be able to handle all the columns at one time, since I will have lot of text columns and it might need lot...
October 6, 2005 at 11:39 am
I want to reinsert it using DTS as well.
The reason I want to do this, as part of our upgrade, we are making our product's table unicode friendly, which means...
October 6, 2005 at 11:30 am
Here is what we are seeing.
We have Table1 with Col1,Col2,Col3,Col4.
In the update trigger of the Table1, we have update statement to update Col2 = getdate() for the updated record.
September 29, 2005 at 10:22 am
Thanks for the reply. That is what I intended to do if I had no solution for this one.
September 28, 2005 at 7:24 am
The only reason for now, I want to use this view is that, our product still supports SQL 2000 and SQL 2005. I do not want to maintain 2 sets...
September 1, 2005 at 10:54 am
Viewing 15 posts - 1 through 15 (of 21 total)