Skip to main content

Video's Links of SQL Server.





YouTube Video's Links of SQL Server.

Monitoring of Database Objects for Space Issues
https://youtu.be/ywfEeHnr8sw

Please Like, Subscribe, share the videos of my channel...!!!

Increase in the Growth of the Log File | SQL Server
https://youtu.be/eWvfwqPB6to

Please Like, Subscribe, share the videos of my channel...!!!

To find the Active Running Transactions on SQL Server.
https://youtu.be/6jPl1jKRfvU

Please Like, Subscribe, share the videos of my channel...!!!

Shrinking a Log File of a Database in Always on Availability.
https://youtu.be/VKlbiz-HNbQ

Please Like, Subscribe, share the videos of my channel...!!!

Self Introduction and Responsibilities of DBA.
https://youtu.be/Td-8nQ6cRe4

Please Like, Subscribe, share the videos of my channel...!!!

Re-Indexing of Database.
https://youtu.be/0Dd2ylJBjG8
Please Like, Subscribe, share the videos of my channel...!!!

Shrinking of LDF and MDF Files on Drives
https://youtu.be/LtbSaiHu6Ho
Please Like, Subscribe, share the videos of my channel...!!!

Check SQL Server Services
https://youtu.be/Zg1PPBHVM5k
Please Like, Subscribe, share the videos of my channel...!!!

Validate Database Backup
https://youtu.be/cztc8PGbdZM
Please Like, Subscribe, share the videos of my channel...!!!

Daily Job Monitoring in SQL Server.
https://youtu.be/v5oQDvPqsQU
Please Like, Subscribe, share the videos of my channel...!!!

Creating_Scheduling DB Jobs in SQL Server.
https://youtu.be/cPMP7-ugAYs
Please Like, Subscribe, share the videos of my channel...!!!

Check Status Availability Database
https://youtu.be/T9yMb1m5hPU
Please Like, Subscribe, share the videos of my channel...!!!

Backup Types in SQL Server
https://youtu.be/jESgGFNMUlo
Please Like, Subscribe, share the videos of my channel...!!!

Creating an Alert in SQL Server
https://youtu.be/DSQqImwT7-8
Please Like, Subscribe, share the videos of my channel...!!!

Restoring a Database in SQL Server
https://youtu.be/EluJIqEYsn8
Please Like, Subscribe, share the videos of my channel...!!!

Instant File Initialisation in SQL SERVER.
Please Like, Subscribe, share the videos of my channel...!!!

Creating an Operator - SQL Server.
Please Like, Subscribe, share the videos of my channel...!!!

Configuring Database Mail in SQL Server.
Please Like, Subscribe, share the videos of my channel...!!!

Recovery Models in SQL Server.
Please Like, Subscribe, share the videos of my channel...!!!

Connecting to SQL Server Instance.
Please Like, Subscribe, share the videos of my channel...!!!

Self Introduction and Responsibilities of a DBA
Please Like, Subscribe, share the videos of my channel...!!!

SQL Server 2017 Windows Server 2012 Firewall Rule Step-By-Step
Please Like, Subscribe, share the videos of my channel...!!!

SQL Server 2017 Installation Step By Step.
Please Like, Subscribe, share the videos of my channel...!!!

SQL Server 2017 Windows Server 2012 Firewall Rule Step-By-Step
https://youtu.be/BP2DAytkUK8
Please Like, Subscribe, share the videos of my channel...!!!

SQL Server 2017 Installation Step By Step.
https://youtu.be/ZTuz8aKRPBU

Best Hotel to Stay in Bangalore....!!!

Comments

Popular posts from this blog

Self Introduction and Responsibilities of a SQL Server DBA.

Hi, Self Introduction:                      I am Vang chew bigger , currently I am working with   Citronics , Here my role is SQL Server Database Administrator , I am having 3+ yrs Exp in SQL SERVER DBA with T-SQL, I have experience on SQL Server 2000, 2005 and 2008, I have a great experience on installation and configuration of SQL SERVER versions, and also applying the patches, hot fix, services packs and RTM’s accordingly, involved in upgrading on in place and side by side as per client requirement, and also Migrating the database on SQL SERVER 2000 to 2005 and 2008, Solid experience on configuring and maintenance of High availability SQL Server solutions, including Log shipping, Database Mirroring, Replication(Transactional and Merge) and SQL Server Clustering., having experience on performance tuning on server level, database level and query level, Responsible for working with application developers in identifying,...

Shrinking a SQL Server Log File with Database in Always ON Availability.

Shrinking a SQL Server Log File with Database in Always ON Availability.                    Once we had a situation in our production server that the database which is in Always ON Availability group has been grown to the maximum size.  Many of them say that we can't shrink the log file as the database is in Always ON and we should take the downtime to perform the operation. But we shrink-ed the database log file to 5 GB from 180 GB. Steps are as below: --To Check the Number of pages allocated by the LogFile. DBCC LOGINFO --To check the file sixe sp_helpdb [SQLPantry] --To check the Log file Size DBCC SQLPERF(LOGSPACE) The above statement will show the logspace of all db at present situation. --To check the Log_reuse_wait description of a log file. select log_reuse_wait_desc,* from sys.databases The above statement will show the status of the log whether it has to be backuped i.e., LogBackup, Nothing, Ac...

Frequently Raised Errors in Log-Shipping

1. Question : IS it possible to log ship database between SQL 2000 & SQL 2008?  Answer: No, thats impossible, In SQL 2008 transaction log architecture is changed compared to SQL 2000 and hence you won’t be able to restore tlog backups from SQL 2000 to SQL 2008 or vice versa. 2. Question:I’m getting the below error message in restoration job on secondary server, WHY? [Microsoft SQL-DMO (ODBC SQLState: 42000)] Error 4305: [Microsoft][ODBC SQL Server Driver][SQL Server]The log in this backup set begins at LSN 7000000026200001, which is too late to apply to the database. An earlier log backup that includes LSN 6000000015100001 can be restored. [Microsoft][ODBC SQL Server Driver][SQL Server]RESTORE LOG is terminating abnormally. Answer: Was your sql server or agent restarted Y’day in either source or destination ? because the error states there is a mismatch in LSN. A particular tran log was not applied in the destination server he...