Keep-Learning.com

"where the knowledge lives"

 
  • Increase font size
  • Default font size
  • Decrease font size

Rebuilding Indexes and Updating Statistics, the correct sequence...

E-mail Print
(1 Vote)
User Rating: / 1
PoorBest 

Rebuilding Indexes or Updating Statistics, which do you do first?
Why?
Are there differences?

Rebuilding an index will update statistics with the equivalent of a full scan - doesn't matter whether you use DBCC DBREINDEX or ALTER INDEX...REBUILD
, the effect is the same. It can do this because it sees a complete picture of the index while it’s doing the rebuild.

Reorganizing an index (using the old
DBCC INDEXDEFRAG, or the new ALTER INDEX...REORGANIZE) will NOT update statistics at all, because it only sees a few pages of the index at a time.
 

So, which is the correct sequence?

Register to read more...
 

Backup And Restore Remain Time

E-mail Print
(2 Votes)
User Rating: / 2
PoorBest 
If you execute a BACKUP or a RESTORE using the SQL Server Management Studio (GUI), the percentage completed will be shown on the screen for each 10% completed, ex.: 10%, 20%, 30%.... 

If you need to know, how long does it take?...use the DMVs and a simple SELECT, check the script below.
 

Columns:
START TIME, PERCENT COMPLETED, COMMAND, DATABASE NAME, STIMATED COMPLETION TIME, MINUTES TO FINISH.
Register to read more...
 

Checklist - Migrando o SQL Server a partir de versões anteriores

E-mail Print
(1 Vote)
User Rating: / 1
PoorBest 
NO TRANSLATION AVAILABLE

A melhor maneira de se fazer qualquer tipo de atualização de versão ou migração de edições, é ter um ótimo planejamento do que será feito e cobrir todas as possibilidades de falhas conhecidas. 

Devemos fazer um lista de verificação para que fique mais claro o que foi feito e o que ainda precisa ser feito. Alem da lista de verificação existem ferramentas da própria Microsoft que nos auxiliam nesse projeto.

Register to read more...
 

Windows Sysinternals

E-mail Print
(1 Vote)
User Rating: / 1
PoorBest 

There are some free tools that we can use in Windows environment that help us in performance analysis, troubleshooting, documentation usage, and server configuration.

You can download these tools from Windows Sysinternals website:

Read more...
 

SSIS - Configuraçao para Instancia Nomeada e Multiplas Instancias Nomeadas no mesmo Servidor.

E-mail Print
(1 Vote)
User Rating: / 1
PoorBest 
NO TRANSLATION AVAILABLE
Como voces sabem o SSIS nao é um serviço do SQL Server instalado para cada instancia em um mesmo servidor e também nao é um serviço escrito para ser utilizado como um recurso do cluster em ambientes clusterizados (para maiores detalhes veja a atualizaçao do Books Online de Setembro de 2007).Abaixo vou colocar alguns exemplos de como configurar o SSIS para ambientes com mais de uma instancia no mesmo servidor.

Register to read more...
 
  • «
  •  Start 
  •  Prev 
  •  1 
  •  2 
  •  3 
  •  4 
  •  5 
  •  Next 
  •  End 
  • »


Page 1 of 5

Statistics

Members : 16
Content : 25
Web Links : 6
Content View Hits : 694

Related Items