Connecting Quartz to MS Sql Server

前端 未结 1 1038
忘了有多久
忘了有多久 2021-01-13 12:18

I\'m fairly new to Quartz Job Scheduler and I may probably be asking stupid questions, but... I\'m having trouble with connecting my Quartz.Server.2010 to MS Sql Server 2012

1条回答
  •  误落风尘
    2021-01-13 12:54

    Short Version:

    Do you have this?

     
    

    Longer Version:

    The word "default" has no super special meaning. In my .config below, I've used "MySqlServerFullVersion" instead.

    But below is a fully functioning Quartz.Impl.AdoJobStore.JobStoreTX

    
    
        
        
        
        
    
        
        
    
        
        
        
        
        
        
    
    
        
    
        
        
    
    
    
        
        
    
    
        
    
        
    
    
    
    
    

    PS

    You created a DB, correct?

    https://github.com/MassTransit/MassTransit-Quartz/blob/master/setup_sql_server.sql

    or here:

    https://github.com/quartznet/quartznet/blob/master/database/tables/tables_sqlServer.sql

    If the above URL(s) (to setup_sql_server.sql) cease to exist, you can internet-search the below text and most likely find the .sql.

    ALTER TABLE [dbo].[QRTZ_TRIGGERS] DROP CONSTRAINT FK_QRTZ_TRIGGERS_QRTZ_JOB_DETAILS

    0 讨论(0)
提交回复
热议问题