0

我想从 vb.net 程序每小时自动执行一次以下存储过程

任何帮助是极大的赞赏

我编写了以下存储过程,如下所示。

create procedure dbo.test as  
BEGIN  
   Select * from dbo.testtable  
END

该存储过程正在返回巨大的结果,然后导致应用程序加载时出现性能问题。

因此,我不想在每个按钮单击事件上调用相同的结果,而是想每小时调用一次存储过程,并且必须通过使用一些状态管理技术(如Sessionor )来重新使用数据集View State

TestAspx.vb文件 - 将结果保存在Session

方法1

PrivateSub test()  
        dim ds as dataset
        ds = objtestdata.test() //From here am accessing the datalayer testdata.vb file
        Session("Testdata") = ds
    End Sub  

在下拉控件中加载会话数据

方法2

PrivateSub loaddropdown()
            dropdowncontrol.DataSource = Session("Testdata")
            dropdowncontrol.DataBind()
end sub

Testdata.vb文件 - 从数据层调用存储过程

Public Function test() As DataSet
        Dim ds As New DataSet
        Dim cmd As DbCommand

        ds.Locale = CultureInfo.InvariantCulture

            cmd = db.GetStoredProcCommand("dbo.test")

            ds = db.ExecuteDataSet(cmd)

        Return ds

End Function  

所以通过Session("TestDate")我可以在多个按钮点击加载中使用这个数据集。

我必须处理testaspx.vb文件中的返回数据集,如下所示

我怎么能每小时运行整个过程?

在这方面帮助我。谢谢你,

4

3 回答 3

2

您的存储过程只是检索整个数据库表。如果这个操作很慢只是因为表有大量的记录,那么没有办法缓存数据库中的数据来帮助你。

您应该仔细检查您是否真的需要始终将所有数据加载到应用程序中。如果这样做,您的应用程序将始终加载缓慢 - 没有办法解决它。

虽然您可以创建一个异步线程,但这可能是一个不如实现刷新按钮的解决方案,以便用户可以控制何时发生重新加载。

最后,如果testtable是视图而不是表,并且它返回小数据很慢,您应该专注于分析和修复视图的性能。

编辑

您可以将 SQL Server 代理作业配置为每小时执行一次运行缓慢的过程,即使您的应用程序没有运行。这假定您没有使用不包含 SQL Server 代理的 Express 版本。

EXEC sp_add_job N'MyHourlyJob'
EXEC sp_add_jobstep
    @job_name = N'MyHourlyJob',
    @step_name = N'Update_Something',
    @command = N'EXEC p_Update_Something', 
EXEC sp_add_schedule
    @schedule_name = N'HourlyJobs' ,
    @freq_interval = 1,
    @freq_type = 4,            -- every @freq_interval days
    @freq_subday_type = 8,     -- every @freq_subday_interval hours
    @freq_recurrence_factor = 1,
    @freq_subday_interval = 1
EXEC sp_attach_schedule
   @job_name = N'MyHourlyJob',
   @schedule_name = N'HourlyJobs' ;
于 2012-07-10T15:05:55.333 回答
0

如果您只想加载一次结果集并将对它的更改传播到您的应用程序,则 SqlDependencyCache 可能会很好地满足您的需求:

http://msdn.microsoft.com/en-us/library/ms178604.aspx

于 2012-07-10T16:17:40.487 回答
0

I don't know what framework version you are using. But you can use the MemoryCache on .Net4 or Http cache on .Net2.

If you are running on .NET 4 you can use MemoryCache to do the job for you.

public static class MyBigDataCache
{
    private const string RegionName= "myBigDataRegion";

    // key could by the username...
    public static DataTable GetMyData(string key)
    {
        // try the cache
        var data = (DataTable) MemoryCache.Default.Get(key, RegionName);

        // nothing in cache...
        if (data == null)
        {
            // read from db
            data = ReadDataFromDb(key);

            // create the cache policy to evict this key after 1 hour.
            var policy = new CacheItemPolicy()
                {
                    AbsoluteExpiration = DateTimeOffset.Now.AddMinutes(60)
                };

            // add to cache
            MemoryCache.Default.Add(new CacheItem(key, data, RegionName), policy);
        }

        return data;
    }

    private static DataTable ReadDataFromDb(String key)
    {
        // load your data here...
        return null;
    }
}

If you're running on .NET2 you can use the Http cache. Example:

HttpContext.Current.Cache.Add(key, data, null, DateTime.Now.AddMinutes(60), Cache.NoSlidingExpiration, CacheItemPriority.Default,
                                          null);
于 2012-07-10T15:42:38.170 回答