ms-sql에도 오라클의 minus가 있었다..

oracle)

select aa, bb from A

minus

select aa, bb from B

ms-sql)

select aa, bb from A

except

select aa, bb from B

똑같다..쓰는방법은...

'개발 > MS-SQL' 카테고리의 다른 글

mssql IDENTITY 증가값 초기화  (0) 2012.10.30
Mssql identity 설정 on/off  (0) 2012.10.25
sp_dbcmptlevel 호환성 수준  (0) 2012.04.17
MS-SQL 테이블 열삽입할때..  (0) 2012.03.26
MSSQL로 열병합 하기!  (2) 2012.02.10
블로그 이미지

쭈니후니

개발자로서 공부와 낚시를 좋아하는 한사람으로서의 추억을 담을 블로그입니다.

,

explorer 9에서 신기한 걸 발견하게 되었다..

아래와 예시와 같이 a태그를 td에 묶어 버리면

다른 explorer9미만의 버젼에서는 잘나온다..

근데 explorer9에선 위 테스트1 테이블과 아래 테스트2테이블의 간격이 엄청 벌어지게 된다.

그래서 td안에 내용을 a태그를 묶었더니 간격이 벌어지지 않고 잘나오네요.

ex)

<table><tr><td>테스트1</td></tr></table>

<table>

<tr>

<a href="test.html"><td>테스트2</td></a>

</tr>

</table>

 explorer9에서 위와 같이 실행했을때..

 테스트1

 

 

이렇게 벌어짐...

 

 

테스트2 

 

 

블로그 이미지

쭈니후니

개발자로서 공부와 낚시를 좋아하는 한사람으로서의 추억을 담을 블로그입니다.

,

Dim fso                   '파일객체
 Dim rep_dirPath               '/rep폴더 경로
   Dim deleted_dirPath          '/rep/deleted/폴더 경로
   
   Dim del_filePath          '이동전 파일전체경로
   Dim del_file              '이동시킬 파일객체
   Dim del_fileName          '이동시킬 파일명 
      
   rep_dirPath  = Server.MapPath("/Rep/") 
   deleted_dirPath = rep_dirPath & "\deleted\"
   
   del_filePath = replace(pgmid,"/Rep/","")
   del_filePath = replace(del_filePath,"/rep/","")
   del_filePath = replace(del_filePath,"/","\")
   del_filePath = rep_dirPath & "\" & del_filePath
   
   Set fso = CreateObject("Scripting.FileSystemObject")

    If (fso.FileExists(del_filePath)) Then
     set del_file = fso.GetFile(del_filepath)
    del_fileName = del_file.name
    
    '이미 /rep/delete/ 경로에 같은 이름의 파일이 있으면 그파일 삭제 
    if(fso.FileExists(deleted_dirPath & del_fileName)) then 
     Dim same_file                
      set same_file = fso.GetFile(deleted_dirPath & del_fileName)
      same_file.delete
    end if
   
    fso.MoveFile del_filePath, deleted_dirPath
    End if  
 
  Set fso = nothing  
 end if

'개발 > ASP' 카테고리의 다른 글

iis6/ii7 디버깅 오류표시방법  (0) 2013.08.02
ASP에서 DB값 NULL 체크 하는 방법  (0) 2012.06.19
ASP 내장객체 - Session  (0) 2008.10.24
블로그 이미지

쭈니후니

개발자로서 공부와 낚시를 좋아하는 한사람으로서의 추억을 담을 블로그입니다.

,