| 网站首页 | 业界新闻 | 小组 | 威客 | 人才 | 下载频道 | 博客 | 代码贴 | 在线编程 | 编程论坛
欢迎加入我们,一同切磋技术
用户名:   
 
密 码:  
共有 1152 人关注过本帖
标题:access数据库转换成sql2000问题
只看楼主 加入收藏
lele2007
Rank: 5Rank: 5
来 自:广东省深圳
等 级:职业侠客
威 望:6
帖 子:1028
专家分:305
注 册:2007-9-4
结帖率:100%
收藏
已结贴  问题点数:20 回复次数:11 
access数据库转换成sql2000问题
请教下,我之前使用的是access数据库。。在access数据库设计表时有一个字段为:时间类型。。默认值为:=now()

导入到sql2000后,时间全部丢失了,另外默认值也没有了。。其它都正常。。

请问一下。access导入到sql2000里可以保留以前在access的时间吗?在sql2000里是如何设置时间默认值的?谢谢
搜索更多相关主题的帖子: access 数据库 
2009-10-09 13:19
lele2007
Rank: 5Rank: 5
来 自:广东省深圳
等 级:职业侠客
威 望:6
帖 子:1028
专家分:305
注 册:2007-9-4
收藏
得分:0 
先等一下

学习编程www.
2009-10-09 13:27
lele2007
Rank: 5Rank: 5
来 自:广东省深圳
等 级:职业侠客
威 望:6
帖 子:1028
专家分:305
注 册:2007-9-4
收藏
得分:0 
默认值找到了。。是  getdate()  就可以了。。
可是导入后以前的时间不见了。。都变成了:null
。。

学习编程www.
2009-10-09 13:30
msgj
Rank: 8Rank: 8
等 级:蝙蝠侠
威 望:4
帖 子:190
专家分:914
注 册:2009-10-3
收藏
得分:10 
获取当天日期
1.access:       now()
2.sqlserver:    getdate()
日期变量
1.access:       #"&data&"#
2.sqlserver:    '"&data&"'

2009-10-10 17:12
aspic
Rank: 17Rank: 17Rank: 17Rank: 17Rank: 17
等 级:贵宾
威 望:51
帖 子:2258
专家分:8050
注 册:2008-2-18
收藏
得分:10 
sql的导入还是用程序导入?
2009-10-10 17:26
msgj
Rank: 8Rank: 8
等 级:蝙蝠侠
威 望:4
帖 子:190
专家分:914
注 册:2009-10-3
收藏
得分:0 
用DTS导入同导
2009-10-10 17:50
lele2007
Rank: 5Rank: 5
来 自:广东省深圳
等 级:职业侠客
威 望:6
帖 子:1028
专家分:305
注 册:2007-9-4
收藏
得分:0 
呵呵。。。我重新导入一次可以了。。是用sql2000自带的企业管理器导入的。。

获取当天日期  
1.access:       now()  
2.sqlserver:    getdate()  
日期变量  
1.access:       #"&data&"#  
2.sqlserver:    '"&data&"'  


按这个改也可以了。。

[ 本帖最后由 lele2007 于 2009-10-11 13:36 编辑 ]

学习编程www.
2009-10-11 13:20
lele2007
Rank: 5Rank: 5
来 自:广东省深圳
等 级:职业侠客
威 望:6
帖 子:1028
专家分:305
注 册:2007-9-4
收藏
得分:0 
还有一个问题请教一下。
我把程序放在了本地。。在本地远程链接sql2000数据库。。就是因为access不能远程链接才换到了sql2000了。。只是换后程序上没有问题了。。可是执行速度响应变得好慢

把程序和数据库传同一台服务器上速度很快。。即使不同一台服务器速度也不会太慢。。
但把程序处在自己电脑IIS下运行。。链接远程数据库慢就比较明显了。。本地带宽只有1M的,服务器是10M的。。

sql2000中有没有执行快一点的?

学习编程www.
2009-10-11 13:25
lele2007
Rank: 5Rank: 5
来 自:广东省深圳
等 级:职业侠客
威 望:6
帖 子:1028
专家分:305
注 册:2007-9-4
收藏
得分:0 
<form method="post" name="from" action="main.asp?action=删除选定记录">
<div class="frame">
  <table border="0" cellpadding="5" cellspacing="1" class="table">
    <tr>
      <th colspan="10">==备案管理==</th>
    </tr>
      <%
     if not(rs.bof and rs.eof) then
     %>
    <tr bgcolor="#E1EDFF">
      <td width="6%">选择</td>
      <td width="9%">FTP用户名</td>
      <td width="19%">网站名称</td>
      <td width="3%">网站域名</td>
      <td width="9%">姓名</td>
      <td width="15%">主办单位名称</td>
      <td width="11%">联系QQ</td>
      <td width="6%">状态</td>
      <td width="15%">操作管理</td>      
    </tr>
<%
        '进行分页处理
        '---------------------------
        dim page,id,PCount,TopicCount
        id=Request.QueryString("page")
         
        '如果参数页不是数值型的则后退
        '-------------------------------
        if not(IsNumeric(id)) then
          call js("后退","")
          response.end
        end if
        '如果参数页大于Cint的最大范围:32767则后退
        '-----------------------------------------
        if id>32767 then
          call js("后退","")
          response.end
        end if
        '如果参数页小于或者等于0则后退
        '-------------------------------
        if Cint(id)<=0 and id<>""then
          call js("后退","")
          response.end
        end if
        '如果参数页为空则设置参数页为第一页
        '------------------------------------
        if id="" then
          page=1
       else
          page=Cint(id)
       end if
        rs.PageSize=30
        rs.AbsolutePage=page
        dim i
        i=rs.PageSize
        '如果参数页大于最大页数则后退
        '--------------------------------
        if Cint(id)>Cint(rs.PageCount) then
          call js("后退","")
          response.end
        end if
        '开始循环输出
        '--------------------------------
          do while not rs.eof and i>0
          i=i-1
    %>
    <tr <% call admin_color() %> title="客户提交时间:<%=rs("l_Titme")%>">
      <td align="center"><input type="checkbox" name="DelSelect" value="<%=rs("l_id")%>" /></td>
      <td><%=rs("l_ftp")%></td>
      <td><%=rs("l_WzName")%></td>
      <td>
      <%
       '对域名进行处理,以英文分号 (;)进行分组
       '-----------------------------------------
       dim yuming
       yuming=Split(rs("l_ym"),";")
       dim ii
       for ii=0 to Ubound(yuming)
         response.write "<a href='http://www."&yuming(ii)&"' target='_blank'>"&yuming(ii)&"</a>"
         if Ubound(yuming)<>ii then response.write ";"
       next        
      %>      </td>
      <td><%=rs("l_FuZeName")%>      </td>
      <td><%=rs("l_ZhName")%></td>
      <td>
      <%
        if rs("l_QQ")=0 then
          response.write "<font color='red'>没有留下QQ号</font>"
        else
      %>
      <img src="http://wpa.("l_QQ")%>:4"><a href="http://wpa.("l_QQ")%>" title="点击联系客户" target="_blank"><%=rs("l_QQ")%></a>
      <% end if %>
      </td>
      <%
       dim alt,img
       select case rs("l_now")
         case "未审核"
           img="/images/icpY.gif"
           alt="状态:未审核"
            
         case "已审核"
           img="/images/icpOK.gif"
           alt="状态:已审核"
            
         case "审核有误"
           img="/images/icpNo.gif"
           alt="状态:审核有误"
       end select
      %>
      <%
       dim shenhe1
       if rs("l_now")="未审核" then
         shenhe1="已审核"
       else
         shenhe1="未审核"
       end if
      %>
      
      <% if session("lele")="乐乐" then %>
      <td align="center"><a href="?action=<%=shenhe1%>&l_id=<%=rs("l_id")%>&ty=<%=ty%>"><img src="<%=img%>" alt="备案状态:<%=alt%>" width="17" height="17" border="0" /></a></td>
      <% else %>
      <td align="center"><img src="<%=img%>" alt="备案状态:<%=alt%>" width="17" height="17" border="0" /></td>
      <% end if %>
      <td width="7%">
       <input type="button" name="xianxi" value="详细" onClick="javascript:location.href='xx.asp?l_id=<%=rs("l_id")%>'" />
       <% if session("lele")="乐乐" then %>
       <input type="button" name="DelOne" value="删除" onClick="javascript:if(confirm('确定删除此条链接吗?此操作不可恢复哟!')){location.href='?action=删除一条记录&l_id=<%=rs("l_id")%>&ty=<%=ty%>';}" />
       <% else %>
       <input type="button" name="DelOne" value="删除" onClick="alert('对不起,你已登录,但没有删除权限操作')" />
       <% end if %>
       </td>      
     </tr>
  <%
      rs.movenext
      if rs.eof then exit do
      loop
    else
      response.write "<tr><td colspan='10' align='left' class='red' bgcolor='#E1EDFF'>暂时没有"&replace(replace(request.querystring("type"),"记录",""),"搜索功能","您需要查询的")&"记录</td></tr>"
    end if
  %>
  <%
       sql="select * from biean"
    if not(rs.bof and rs.eof) then
%>
  <tr>
   <td colspan="10" bgcolor="#E1EDFF" align="left">
    <input type="checkbox" name="blogall" onClick="alert('此功能已禁用!')" />全选
    <%
      if session("lele")="乐乐" then
    %>
    <input type="submit" value="删除选定记录" onClick="javascript:if(confirm('确定要删除选定的记录吗?此操作不可恢复哟!')){return true;}else{
    return false;}">
    <% else %>
    <input type="button" value="删除选定记录" onClick="alert('对不起,你已登录,但没有权限删除操作')">
    <% end if %>
    <input name="DelAll" type="button" onClick="javascript:alert('此功能已禁用!')" value="清空所有记录" />
    <% end if %>
 
    <%
        '调用分页处理代码的子过程
        '----------------------------------------------
        dim Two
        Two=""
                if Two<>"" then Two="&type="&request.querystring("type")
        sql="select * from beian"
        if not(rs.bof and rs.eof) then
            Call TurnPage(rs.RecordCount,rs.PageCount,Two,Page)
        end if
        rs.close
        set rs=nothing
     %>
  </table>
</div>
</form>





这是显示数据库信息的代码。。



sql部份



<%
 dim rs,sql
select case request.querystring("type")
 case "以个人备案记录"
   sql="select * from beian where l_Class='个人' order by l_id desc"
 case "以公司备案记录"
   sql="select * from beian where l_Class='公司' order by l_id desc"
 case "今天新提交"
   sql="select * from beian where year(l_Titme)&month(l_Titme)&day(l_Titme)="&year(now())&month(now())&day(now())&" order by l_id desc"
 case "已审核"
   sql="select * from beian where l_now='已审核' order by l_id desc"
case "未审核"
   sql="select * from beian where l_now='未审核' order by l_id desc"
case "审核有误"
   sql="select * from beian where l_now='审核有误' order by l_id desc"
case "搜索功能"
   dim letgo
   letgo=server.HTMLEncode(trim(request.form("letgo")))
   sql="select * from beian where l_ftp like '%"&letgo&"%' or l_ym like '%"&letgo&"%' or l_ZhName like '%"&letgo&"%'"
   sql=sql&" or l_QQ like '%"&letgo&"%' order by l_id desc"
case else
   sql="select * from beian order by l_id desc"
end select
  set rs=server.createobject("adodb.recordset")
  rs.open sql,lele,1,1
%>

学习编程www.
2009-10-11 13:28
lele2007
Rank: 5Rank: 5
来 自:广东省深圳
等 级:职业侠客
威 望:6
帖 子:1028
专家分:305
注 册:2007-9-4
收藏
得分:0 
例如说那个存储过程可以加快速度吗、

学习编程www.
2009-10-11 13:31
快速回复:access数据库转换成sql2000问题
数据加载中...
 
   



关于我们 | 广告合作 | 编程中国 | 清除Cookies | TOP | 手机版

编程中国 版权所有,并保留所有权利。
Powered by Discuz, Processed in 0.033370 second(s), 7 queries.
Copyright©2004-2024, BCCN.NET, All Rights Reserved