Forum Replies Created

Viewing 15 posts - 106 through 120 (of 183 total)

  • RE: User table-Valued Functions

    nothing ?

  • RE: User table-Valued Functions

    My first view joins 3 tables and has some condition to join them. During the process of the Report I have to join that view with a temp table...

  • RE: Max partitions in a single table

    Ok. I have my table partitioned by date. An index was patitioned as well.

    I actually, partitioned 1 more tables that is joined to this table (Parent-Child relationship).

    The Report could improve...

  • RE: Max partitions in a single table

    Thank you. Actually, I applied that to my other table. I partitioned my indexes where the date is used.

    Im restructuring my second table. let you know how it goes.

  • RE: Max partitions in a single table

    This table has around 200millions of records and it has to be part of the Archive Data as well. Partition by Date is the best partition for this table as...

  • RE: Max partitions in a single table

    this is basically my scenario. This is the kind of queries I use in mostly of my Reports. I'm planning to get a denormalize tables and run a daily process...

  • RE: Max partitions in a single table

    This thread is apparently for another table, I assume in the same DB. That's why I recommended partitioning by date again if possible. Especially to simplify files/filegroups.

    Yes, this table...

  • RE: Max partitions in a single table

    Why would you partition on a 20MB file anyway ?

    [/quote]

    Actually, I made a mistake in the file size. After I created my partition and move the data into that. the...

  • RE: Max partitions in a single table

    this is what I did:

    ALTER DATABASE [DATABASE ]ADD FILEGROUP RANGEID

    ALTER DATABASE DATABASE

    ADD FILE

    (

    NAME = 'RANGEID'

    , FILENAME = 'F:\MSSQL.1\MSSQL\Data\RANGEID.ndf'

    , SIZE = 20000 KB

    ,FILEGROWTH = 10%

    ) TO FILEGROUP [RANGEID]

    CREATE PARTITION FUNCTION...

  • RE: Max partitions in a single table

    now, im confused

  • RE: Max partitions in a single table

    Yes it is the same database. And it has a datetime column. But, this table join only for the ID, we dont do anykind of reports for the date (from...

  • RE: Max partitions in a single table

    I just checked the range with the people use it. and the range is for over 25 years. So, I dont need partition the whole Range. The Range I need...

  • RE: Backup databse files and filegroups

    right now I used bcp.. The next step is to use SSIS instead bcp for the insertion of data.

    conclusion: If i restore my full backup, the filesgroups will restored with...

  • RE: Backup databse files and filegroups

    My DB is 330GB. We don’t need a full model in this case. We just insert data and then we create reports. The reason of the 12 filegroups is because...

  • RE: Max partitions in a single table

    I thought that. I dont want to deal with 1000 files.

    What do you think about this?

    The range of ID is big and the records only fit the range of one...

Viewing 15 posts - 106 through 120 (of 183 total)