Differenze tra le versioni di "MSSQL"
Da WikiSitech.
Vai alla navigazioneVai alla ricerca| Riga 2: | Riga 2: | ||
| === Trasferimento login e password fra database diversi === | === Trasferimento login e password fra database diversi === | ||
| Vedi articolo [http://support.microsoft.com/kb/246133/en-us 246133] sul sito del supporto Microsoft | Vedi articolo [http://support.microsoft.com/kb/246133/en-us 246133] sul sito del supporto Microsoft | ||
| + | === Estrazione record in attesa di replica transazionale === | ||
| + | <code sql> | ||
| + | SELECT name as 'Agent', SUM(UndelivCmdsInDistDB) as 'Cmds' | ||
| + | 	FROM distribution.dbo.MSdistribution_agents a | ||
| + | 		INNER JOIN distribution.dbo.MSdistribution_status st on st.agent_id = a.id | ||
| + | 	GROUP BY a.name | ||
| + | </code> | ||
| == Microsoft SQL Server 2005 - Installazione in modalità unattended == | == Microsoft SQL Server 2005 - Installazione in modalità unattended == | ||
Versione delle 14:48, 3 giu 2009
Indice
Microsoft SQL Server 2000 - Appunti di gestione
Trasferimento login e password fra database diversi
Vedi articolo 246133 sul sito del supporto Microsoft
Estrazione record in attesa di replica transazionale
SELECT name as 'Agent', SUM(UndelivCmdsInDistDB) as 'Cmds'
	FROM distribution.dbo.MSdistribution_agents a
		INNER JOIN distribution.dbo.MSdistribution_status st on st.agent_id = a.id
	GROUP BY a.name
Microsoft SQL Server 2005 - Installazione in modalità unattended
Installazione di una nuova istanza
Start /wait <CD or DVD Drive>\DISK1\setup.exe /qb INSTANCENAME=<InstanceName> ADDLOCAL=All PIDKEY=<pidkey value with no "-"> SAPWD=<StrongPassword> SQLACCOUNT=<domain\user> SQLPASSWORD=<DomainUserPassword> AGTACCOUNT=<domain\user> AGTPASSWORD=<DomainUserPassword> SQLBROWSERACCOUNT=<domain\user> SQLBROWSERPASSWORD=<DomainUserPassword>
Per ulteriori dettagli vedi l'articolo estratto da book online
Microsoft SQL Server 2005 - Appunti di gestione
