This took place as a result of the fact that on March 24, 2023, GitHub updated the RSA SSH host key that is used to secure Git operations for GitHub.com because the private key was briefly exposed in a public GitHub repository. This was the reason why this occurred. If you remembered GitHub's previous key fingerprint in your SSH client prior to that...
Monday, March 27, 2023
Monday, February 12, 2018
Quartz.NET 3.0.2 Configure AdoJobStore JobStore Sql server
February 12, 2018.net, #AdoJobStore #JobStore #Sqlserver, #Quartz, #Quartz.NET 3.0.2, trigger quartz job programmatically, www.quartz-scheduler.net
1 comment

Quartz.NET 3.0.2 Configure AdoJobStore JobStore SQL server
in the previous article, i have explained how to create jobs and triggers dynamically
this article will explain steps to configure quartz with SQL server
Step 1 :
Download Quartz project from...
Tuesday, January 30, 2018
Get all jobs and triggers details in Quartz.NET 3.0
January 30, 2018.net, c#, Scheduler, trigger quartz job programmatically, www.quartz-scheduler.net
1 comment

in my Previous article I have explained how we can create jobs and triggers dynamically.in this article i will show you how we can get all running jobs and triggers in quartz.net 3.x
using Quartz;
using Quartz.Impl;
using Quartz.Impl.Matchers;
class Program
{
var allTriggerKeys...
Monday, January 29, 2018
Quartz.NET 3.0.2 Create Triggers and jobs dynamically
January 29, 2018.net, c#, quartz, trigger quartz job programmatically, www.quartz-scheduler.net
2 comments

Quartz.NET is a pure .NET library written in C# and is a port of very popular open source Java job scheduling framework. let's see how we can create Triggers and jobs dynamically
using Quartz;
using Quartz.Impl;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace ConsoleApplication2
{
...
Sunday, December 24, 2017
Tata Sky internal error occurred while processing your request kindly restart the application and try again 0xfd9009 fe1001f4

Tata Sky internal error occurred while processing your request kindly restart the application and try again 0xfd9009 fe1001f4
Steps to Resolve above error:
1. Install the Tata Sky application
2. Launch the TataSky application >error message displayed
3. Launch...
Thursday, September 14, 2017
ORA-00001: unique constraint entity framework 6 code first approach
ORA-00001: unique constraint entity framework 6
Solution : -
The solution is to grant user both:
'CREATE SEQUENCE' and
'CREATE TRIGGER'
permissions and re-create the schema.
...
Wednesday, September 13, 2017
ORA-30673: column to be modified is not an identity column oracle 12c
ORA-30673: column to be modified is not an identity column
Answer : -
Currently orcle 12c does not support modifying an existing column as IDENTITY column
Solution : - Solution is to add a new column and then drop the existing one
ALTER TABLE Tablename ADD (ColumnName_NEW NUMBER(3) GENERATED ALWAYS AS IDENTITY);...