I am new to C# and SQL Server programming. I have a project in which I have to create a database backup automatically after every transaction. I tried SQL Server Agent jobs but unfortunately I came to know that in SQL Server 2014 Express, SQL Server Agent is not available.
Now I want to take a complete database script after every transaction in my C# application automatically. I found many ways of database script with data but all are through SQL Generate scripts Wizard. According to my need, I want an exact query that I run from C# application after every transaction and it creates a script in specific directory (replace if already exists). Thanks all.