When we have un have an unhealthy data synchronization state, we can always use graphic interface to resume data movement. This script resume when the database need it, but you must connect on secondary server to run it. 1 2-- You can use SQLCMD Mode 3-- :CONNECT <MyServer> 4PRINT '-- SQL Script to SET HADR RESUME'...

When you have several sql jobs that need to be disabled all. If you can, you can just turn off SQL Agent but, sometime, it is not possible. This script generates the script to enable and disable. 1 2--generate disable 3SELECT 'exec msdb..sp_update_job @job_name = '''+NAME+''', @enabled = 0' FROM msdb..sysjobs 4...

We have a lot of blogs and documents that can explain how service broker works. https://msdn.microsoft.com/en-us/library/bb839489(v=sql.105).aspx This step by step how to configure SQL Server Service Broker between two servers. You have two Windows Servers with SQL Server each one with a database. We will use this list...

Create mirror between two server without witness (High safety without automatic failover - synchronous). This exemple use TechNet Virtual Labs : Exploring AlwaysOn Availability Groups in SQL Server 2014 This script will not change anything in your database, it just will create the scripts for. All script was create for...

1</p> 2 3<p>echo off 4cls 5set token=0 6tasklist /FI "imagename eq cmd.exe" /NH /FO csv &gt; tk.lst 7type tk.lst 8echo.---------------- 9for /F "eol=; tokens=2,3* delims=," %%i in (tk.lst) do call :process %%i 10goto :eof</p> 11 12<p>:process</p> 13 14<p>if "%token%"=="0" ( 15 set token=1 16 goto :eof 17) 18 19echo...

Check SQL Version 1 2SELECT 3@@servername AS ServerName 4, CASE WHEN CONVERT(VARCHAR(128), SERVERPROPERTY ('productversion')) LIKE '8%' THEN 'SQL2000' 5WHEN CONVERT(VARCHAR(128), SERVERPROPERTY ('productversion')) LIKE '9%' THEN 'SQL2005' 6WHEN CONVERT(VARCHAR(128), SERVERPROPERTY ('productversion')) LIKE '10.0%' THEN...

Plan de l’article# Commandes de bases Manipuler les fichiers Flux de redirection Gestion du multitache et tache de fond Users, groups et CHMOD Système Web Gestion réseau Commandes spécifiques aux ordis Apple Commandes de bases, navigation dans les fichiers# ls liste les fichiers d’un dossier. Options : -a pour les...

Faire déverrouiller votre appareil dans un magasin de détail ou un concessionnaire (c’est “se faire voler”). Il vous impose un frais d’environ 50$ (taxes exigibles en sus) Vous devez satisfaire une série des critères. Vous pouvez perdre la garantie. L’avertissement que certaines options pourraient ne plus fonctionner...

Before to start to change everything, you must have a baseline that it established in normal load operation for comparisons. 1 2SELECT TOP 20 3 qs.sql_handle 4, DB_NAME(CAST(pa.value as INT)) as DatabaseName 5, qs.execution_count 6, qs.total_worker_time AS Total_CPU 7, total_CPU_inSeconds = qs.total_worker_time/1000000...

A login cannot be dropped while it is logged in. A login that owns any securable, server-level object, or SQL Server Agent job cannot be dropped. This code can be used to drop Login from SQL Server and user name associated with this Login in different databases. 1 2------------------------------------ 3-- Drop user -...

Enable broker service on all databases but it check if Service Broker is enabled. 1 2-- ***************************************** -- 3-- SQL Script to ENABLE_BROKER 4-- ***************************************** -- 5-- 6PRINT @@servername; 7PRINT Getdate(); 8BEGIN TRY DROP TABLE #dbs; END TRY BEGIN CATCH END CATCH; 9...

We have many ways to drop a database, but if you want to drop many databases. You can have some problems with opened connections, but this script kill all connection and drop the database. 1 2-- ***************************************** -- 3-- SQL Script to drop databases 4-- *****************************************...

How reset the ‘sa’ password of SQL Server: Plan A - If you have an account in sysadmin role then you can use SSMS or T-SQL: 1 2GO 3ALTER LOGIN [sa] WITH DEFAULT_DATABASE=[master] 4GO 5USE [master] 6GO 7ALTER LOGIN [sa] WITH PASSWORD=N'Pass1word$' 8GO Plan B- If you do not have an account in sysadmin role, but you are...

(11) General Interference with Organizations and Production# (a) Organizations and Conferences# (1) Insist on doing everything through “channels.” Never permit short-cuts to be taken in order to, expedite decisions. (2) Make “speeches.” Talk as frequently as possible and at great length. Illustrate your “points” by...

Unused indexes should be deleted, but you would not drop all the unused indexes without deep analyse. This a script delete all unused indexes. - Nonclustered indexes Non primary keys Non unique Non unused (#Total reads < 100) Finding Unused Indexes – Only Nonclustered 1 2SELECT 3 db_name() as DatabaseName 4...

Script to show all opened transactions: 1 2SELECT d.name as DatabaseName 3, ses.host_name as [host_name] 4, ses.login_time AS session_login_time 5, ses.last_request_start_time 6, ses.last_request_end_time 7, ses.login_name 8, ses.nt_user_name 9, ses.STATUS 10, tst.session_id as SPID 11, tst.enlist_count AS...

Des gens d’une mauvaise foi absolue, vous en avez forcément dans votre entourage. En général, ceux-ci sont prêts à user de toutes les malhonnêtetés argumentatives pour tenter de vous convaincre… ce qui est souvent très énervant! Mais voyez plutôt le bon côté des choses, ces abrutis vous offrent sur un plateau un...