To remove all debug breakpoints in Android Studio, follow the steps given below:
- Ctrl + Shift + F8 (open Breakpoints dialog)
- Ctrl + A (select all breakpoint)
- Alt + Delete (remove selected breakpoints)
- Enter (confirm)
We are trying to contribute to the net what ever Technical knowledge. I Believe that knowledge increases by spreading and sharing with others.
DECLARE @name VARCHAR(50) -- database nameDECLARE @path VARCHAR(256) -- path for backup filesDECLARE @fileName VARCHAR(256) -- filename for backupDECLARE @fileDate VARCHAR(20) -- used for file name-- please change the set @path = 'change to your backup location'. for example,-- SET @path = 'C:\backup\'-- or SET @path = 'O:\sqlbackup\' if you using remote drives-- note that remotedrive setup is extra step you have to perform in sql server in order to backup your dbs to remote drive-- you have to chnage you sql server accont to a network account and add that user to have full access to the network drive you are backing up toSET @path = 'your backup location'SELECT @fileDate = CONVERT(VARCHAR(20),GETDATE(),112)DECLARE db_cursor CURSOR FORSELECT nameFROM master.dbo.sysdatabasesWHERE name NOT IN ('master','model','msdb','tempdb')OPEN db_cursorFETCH NEXT FROM db_cursor INTO @nameWHILE @@FETCH_STATUS = 0BEGINSET @fileName = @path + @name + '_' + @fileDate + '.BAK'BACKUP DATABASE @name TO DISK = @fileNameFETCH NEXT FROM db_cursor INTO @nameENDCLOSE db_cursorDEALLOCATE db_cursor
- Google account settings stored in your phone
- System and application data and settings
- Downloaded applications
It’ll NOT remove:
- Current system software and bundled application
- SD card files e.g. photos, music files, etc.