由买买提看人间百态

boards

本页内容为未名空间相应帖子的节选和存档,一周内的贴子最多显示50字,超过一周显示500字 访问原贴
DotNet版 - SSIS --- SQL Server 2005
相关主题
请问可能对C# dataSet作query吗?ASPNET 访问SQL Server 2005 被拒
Web Seminar hosted by CINAOUG on 2011/06/13 (转载)[合集] ASPNET 访问SQL Server 2005 被拒
菜人问问,你们都在database上干什么??Problem connecting to SQL Server
LINQ to SQL VS Entity FrameworkReason that hold me from upgrating to vs2008
Interview: small business of .net请教一个visual studio 2005下的SQL server问题
ASP.NET host server用.NET做了个网站,大家来拍砖吧
[转载] sql server如何积累.net开发的工作经验 (转载)
SQL Server2005的问题【CINASSUG】【CINAOUG】SQL Server User Group 今晚讲座 07/17 (转载)
相关话题的讨论汇总
话题: sql话题: ssis话题: server话题: datestr话题: queries
进入DotNet版参与讨论
1 (共1页)
r****z
发帖数: 4
1
我需要自动存所有的SQL SERVER TABLES DAILY because users need to run queries
to compare the data changes for any specified periods. I plan to use SSIS
and ask SQL Server ADMNIN to set up scheduler to run it automatically. I
only have 2 days to complete it including weekends. I have never used SSIS
before. Is there a quick way to learn it? It seems it is hard to learn it
quickly. BTW, I use sql server management studio
Thanks!
s*****w
发帖数: 215
2
SSIS is mostly click and drag, so not difficult to learn.
You need to have visual studio to do design and import the dtsx file to the
sql server management studio for scheduling the job.

queries

【在 r****z 的大作中提到】
: 我需要自动存所有的SQL SERVER TABLES DAILY because users need to run queries
: to compare the data changes for any specified periods. I plan to use SSIS
: and ask SQL Server ADMNIN to set up scheduler to run it automatically. I
: only have 2 days to complete it including weekends. I have never used SSIS
: before. Is there a quick way to learn it? It seems it is hard to learn it
: quickly. BTW, I use sql server management studio
: Thanks!

a*******t
发帖数: 891
3
you mean you need the table schema saved daily?
you can run a job with SQL command to query the Infornation_schema views and
save it to your history table
don't need SSIS for this ba

queries

【在 r****z 的大作中提到】
: 我需要自动存所有的SQL SERVER TABLES DAILY because users need to run queries
: to compare the data changes for any specified periods. I plan to use SSIS
: and ask SQL Server ADMNIN to set up scheduler to run it automatically. I
: only have 2 days to complete it including weekends. I have never used SSIS
: before. Is there a quick way to learn it? It seems it is hard to learn it
: quickly. BTW, I use sql server management studio
: Thanks!

b******g
发帖数: 81
4
看你的帖子是要比较数据,可以做一个自动备份的Job,将数据库备份,然后恢复到不
同的数据库进行比较。
Job 里的Step1 写如下内容:
=======================================
USE master
GO
DECLARE @DATESTR VARCHAR(50),@FILESTR VARCHAR(200)
SET @DATESTR=CONVERT(VARCHAR(50), GETDATE(),120)
SET @DATESTR=REPLACE(@DATESTR,':','')
1 (共1页)
进入DotNet版参与讨论
相关主题
【CINASSUG】【CINAOUG】SQL Server User Group 今晚讲座 07/17 (转载)Interview: small business of .net
looking for somebody around columbia sc area? (ASP.NET SQL SERVER)ASP.NET host server
How to check a linked table?[转载] sql server
General Q: Web Server Load Balance and DB Server (转载)SQL Server2005的问题
请问可能对C# dataSet作query吗?ASPNET 访问SQL Server 2005 被拒
Web Seminar hosted by CINAOUG on 2011/06/13 (转载)[合集] ASPNET 访问SQL Server 2005 被拒
菜人问问,你们都在database上干什么??Problem connecting to SQL Server
LINQ to SQL VS Entity FrameworkReason that hold me from upgrating to vs2008
相关话题的讨论汇总
话题: sql话题: ssis话题: server话题: datestr话题: queries