時間戳不帶秒:
substring(replace(replace(replace(convert(varchar, getdate(), 120 ),'-',''),' ',''),':',''),1,12 )
備份語句:
--建立儲存過程
create proc [dbo].[backup_db]
as--定義變數
declare @filename varchar(100)
--變數賦值(將資料庫備份到什麼路徑下)
select @filename =n'e:\db_backup\db-'+convert(varchar(10),getdate(),120)+'.bak'
--備份資料庫 battery_liuh_0306為當前資料庫
backup database [battery_liuh_0306] to disk = @filename
with noformat, noinit, name = n'pdubatterymanage-完整 資料庫 備份',
skip, norewind, nounload, stats = 10
使用SQL語句對Access資料庫進行備份
說明 1.要備份的資料庫 medicine.mdb 有下列幾個表單 enter表 exit表 store表 2.備份的資料庫 bumedicine.mdb 放在當前路經的dbbackup子目錄中。3.使用sql中的select.into.in語句,對medicine.mdb進行追加查詢,生 成與me...
如何用SQL語句查詢Excel資料?
q 如何用sql語句查詢excel資料?a 下列語句可在sql server中查詢excel工作表中的資料。excel 2007和2010版本 select from opendatasource microsoft.ace.oledb.12.0 data source c book1.xlsx u...
如何用SQL語句查詢Excel資料?
如何用sql語句查詢excel資料?q 如何用sql語句查詢excel資料?a 下列語句可在sql server中查詢excel工作表中的資料。2007和2010版本 select from opendatasource microsoft.ace.oledb.12.0 data source c ...