Viewing 5 posts - 31 through 36 (of 36 total)
Here is the design of the Polygon table. The one supporting the cursor:
CREATE TABLE [dbo].[Polygon] (
[MSLINK] [int] IDENTITY (1, 1) NOT NULL ,
[CLASSTYPE] [varchar] (24) COLLATE SQL_Latin1_General_CP1_CI_AS NULL ,
[SYSTEMID] [varchar]...
July 13, 2006 at 11:21 am
The only index is the one created at the bottom of the SP.
CREATE CLUSTERED INDEX IX_PolygonTileIndex_TileIndex ON PolygonTileIndex (TIX, TIY)
I guess given that I am now truncating the table...
July 12, 2006 at 7:45 am
Thanks for the input.
I will try truncating the table in place of the drop and recreate this morning.
The drop and create is not an issue as this is not...
July 11, 2006 at 8:06 am
Thanks for the thoughts. Could you please elaborate a little more on the following comment. I'm looking specifically for comments around database impacts/benefits.
The benefit of using the n+1 cluster where...
June 28, 2005 at 11:31 am
Thank you for the information and we will try the OSQL you have provided.
Yesterday, using ISQL, we were trying the following ISQL -U domain\id -P password and it would not...
June 21, 2005 at 7:52 am
Viewing 5 posts - 31 through 36 (of 36 total)