adspace


Explain what are partitioned views and distributed partitioned views?

Answer Posted / Rajesh Tejan

{"partitioned_views": "A partitioned view is a type of SQL Server view that spans multiple partitions within a table or indexed view. It allows for better performance by reducing the amount of data that needs to be read during queries.",n "distributed_partitioned_views": "A distributed partitioned view is a type of SQL Server view that spans multiple tables, each of which is stored on a different server in a distributed database. It allows for better performance by distributing the workload across multiple servers."}

Is This Answer Correct ?    0 Yes 0 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

Can you index views?

953


Why and when do stored procedure recompile?

1057


How to connect php with different port numbers?

1186


Explain “row_number()” in sql server with an example?

1078


What are the properties of the transaction?

1072


What are wait types?

1248


How to convert numeric expression data types using the cast() function?

1148


What is a scheduled job or what is a scheduled task?

1037


Can sql servers link to other servers like oracle?

915


List out the different types of locks available in sql server?

1049


explain different types of backups avaialabe in sql server? Given a particular scenario, how would you go about choosing a backup plan? : Sql server database administration

1132


Is there any performance difference between if exists (select null from table) and if exists (select 1 from table)?

1022


What are the pros and cons of putting a scalar function in a queries select list or in the where clause?

1298


Disadvantages of the indexes?

1222


You have a stored procedure, which execute a lengthy batch job. This stored procedure is called from a trigger you do not want to slow the data entry process you do not want trigger to wait for this batch job to finish before it completes itself what you can do to speed up the process?

1212