Viewing 13 posts - 121 through 133 (of 133 total)
The surrogate keys will help to keep every rows unique, right? This can be done with the current identity column I have in place. Therefore, ...
August 19, 2008 at 11:06 am
I forgot to add that I am in a process of migrating from SQL2000 to SQL2005. I want to see if I can move databases from server sql2000...
May 14, 2008 at 2:19 pm
Wow, I think my post launched an interesting story.
We might facing a lot of fragmentation, see the result of the analyze.
Volume Data (D:)
Volume size...
May 8, 2008 at 10:17 am
The table seems to be not too fragmented:
DBCC SHOWCONTIG scanning 'REP_table' table...
Table: 'REP_table' (672057480); index ID: 0, database ID: 10
TABLE level scan performed.
- Pages Scanned................................: 519723
- Extents Scanned..............................: 64974
- Extent...
May 7, 2008 at 10:17 am
One more thing. This table is truncated and repopulated on a weekly basis. No insert/delete or update are done to the table after the load. How the...
May 7, 2008 at 8:44 am
Ok, I understand now.
How can I see if my table is fragmented and how I can defrag? what about the disk file fragmentation, how I can defrag it?
Thanks SQLGuru...
May 7, 2008 at 8:36 am
Here is the plans cost for both exemple:
************
select * from rep_table with(index(ix_table_dist))
where dist='TYERY'
Bookmark Lookup
Physical operationBookmark Lookup
Logical OperationBookmark Lookup
Estimates row count244,918
Estimated row size ...
May 7, 2008 at 8:22 am
What I meant was if I add a Primary Key Constraint, the data will be sort according my key and will not be a heap table anymore.
In a...
May 6, 2008 at 12:58 pm
Where I can find tthe reporting services report packs on SQL2K?
Thanks
May 6, 2008 at 11:28 am
Instead of moving the index from non-clustered to clustered, if I add a primary key on field "ID" to the table, this work?
Thanks
May 6, 2008 at 11:21 am
I am new at this place. I will need to dig out how the queries are done on that table. I don't want to jeopardize the all other...
May 5, 2008 at 2:47 pm
Hello,
We currently don't have clustered index in this table. The table (36 million rows)is truncate on a weekly basis and then repopulated. All indexes are rebuild afterward. ...
May 5, 2008 at 1:27 pm
Hello GilaMonster,
Here is the information:
rowcount whole table:+/-36000000
expected rowcount return: 244918
CREATE TABLE [dbo].[REP_table] (
[ID] [int] NOT NULL ,
[Qty] [int] NOT NULL ,
[Price] [money] NOT NULL ,
[FPrice] [money] NOT NULL ,
[Fline] [money]...
May 5, 2008 at 12:49 pm
Viewing 13 posts - 121 through 133 (of 133 total)