Please start any new threads on our new site at https://forums.sqlteam.com. We've got lots of great SQL Server experts to answer whatever question you can come up with.

 All Forums
 SQL Server 2008 Forums
 Transact-SQL (2008)
 Table partion in SQL Server 2008 performance

Author  Topic 

kond.mohan
Posting Yak Master

213 Posts

Posted - 2013-01-14 : 00:38:17
dear team,
we are pulling the data from oracle to sqlserver
one of my table having more than 200 millions of data.
we are not able to accesing few reports(Execution time is more than 55min) which is Accessing this table from
from staging Database in sql server.we are trying to the Table partiton on this table
this table primary key was difined by combination of columns(A+B+C a,b,c is three different columns from table ). table is having
lanching time field and recreation time field also existing .we loading this table using SSIS Package exetuion process
because of this table partition any impact on ETL process.

sample id filed values
KM5110390ACCNTCN0010701
KM10361241ACCNTCN0000101
KM10361307ACCNTCN0000101
KM3803888ACCNTCN0004601

1) based on which field we have to do the table partion(Recommanded) and any impact on ETL process(Perfomance wise)
pls suggest the solution.

visakh16
Very Important crosS Applying yaK Herder

52326 Posts

Posted - 2013-01-14 : 00:44:39
usually the table partition is done on identity column or timestamp column. How is the partition currently setup? are the individual partitions on different filegroups?
There's a whole lot of resources available on partitioning

http://www.brentozar.com/sql/table-partitioning-resources/

------------------------------------------------------------------------------------------------------
SQL Server MVP
http://visakhm.blogspot.com/

Go to Top of Page
   

- Advertisement -