❶ 如何用 sql 命令讀取文件
以下是orcale的方法,其他資料庫也類似。
1.寫控制文件格式如下(下面是我自己的,你把表名該成你自己的表,欄位該成你的欄位就可以了):
OPTIONS (skip=0,rows=128)
load data
INFILE "user_user_test.txt"
into table USER_USER_TEST
truncate
fields terminated by ',' optionally enclosed by '"'
(
USERID,
CITYID,
USERNAME,
PWD,
CREATETIME
)
2.把控制文件和數據文件放在同一個目錄(建議)
3.執行sqlldr userid=scott/anwei@orcl control=user_user_test.ctl data=user_user_test.txt log=user_user_test.log 命令
❷ 怎麼用sql語句讀取excel文件啊
//for get driver...
char szBuf[2001];
WORD cbBufMax = 2000;
WORD cbBufOut;
char *pszBuf = szBuf;
CString sDriver;
//for read the file...
CDatabase database;
CString sSql;
CString sItem1,sItem2;
CString sDsn;
CString sFile;
//-------------------在這里把sFile賦值為你要讀取的xls文件的文件名.
///////////////////////////////////////
// Get the names of the installed drivers
//////////////////////////////
if(!SQLGetInstalledDrivers(szBuf,cbBufMax,& cbBufOut))
sDriver="";
else
{
// Search for the driver...
do
{
if( strstr( pszBuf, "Excel" ) != 0 )
{
// Found !
sDriver = CString( pszBuf );
break;
}
pszBuf = strchr( pszBuf, '\0' ) + 1;
}
while( pszBuf[1] != '\0' );
}
// Retrieve the name of the Excel driver. This is
// necessary because Microsoft tends to use language
// specific names like "Microsoft Excel Driver (*.xls)" versus
// "Microsoft Excel Treiber (*.xls)"
// sDriver = GetExcelDriver();
if( sDriver.IsEmpty() )
{
AfxMessageBox("No Excel ODBC driver found");
exit(0);
}
sDsn.Format("ODBC;DRIVER={%s};DSN='';DBQ=%s",sDriver,sFile);
TRY
{
// Open the database using the former created pseudo DSN
database.Open(NULL,false,false,sDsn);
// Allocate the recordset
CRecordset recset( &database );
// Build the SQL string
// Remember to name a section of data in the Excel sheet using "Insert->Names" to be
// able to work with the data like you would with a table in a "real" database. There
// may be more than one table contained in a worksheet.
sSql = "SELECT [A],[B]" //把A,B為xls文件裡面的列,如果要讀取多列的話,用,隔開
"FROM [Sheet1$] " //xls文件裡面的第一個表,如果xls文件里的第一個表不是Sheet1這個名字的話,最好改為Sheet1
"ORDER BY [A],[B]"; //從小到大輸出,A列為一級,B列為二級
// Execute that query (implicitly by opening the recordset)
recset.Open(CRecordset::forwardOnly,sSql,CRecordset::readOnly);
// Browse the result
while( !recset.IsEOF() )//不斷讀取A,B列的數據
{
//Read the result line
recset.GetFieldValue("A",sItem1); //把A列的數據傳給sItem1
recset.GetFieldValue("B",sItem2); //把B列的數據傳給sItem2
//注意!這里的sItem1,sItem2是不斷更新的
// Close the database
database.Close();
}
CATCH(CDBException, e)
{
// A database exception occured. Pop out the details...
AfxMessageBox("Database error: "+e->m_strError);
}
END_CATCH;
❸ 讀取sql文件並寫入到資料庫,用SQL語句。
mysql導入導出常用命令
用mysql資料庫最常用的功能便是導入導出了,當然用工具比較方便,不過,用命令你也是應該了解的。
以下實例在windows下的。
一、備份資料庫:(命令在DOS的mysql\bin目錄下執行,linux下當然不用到指定目錄了)
mysqlmp --opt school>school.bbb
注釋:將資料庫school備份到school.bbb文件,school.bbb是一個文本文件,文件名任取,打開看看你會有新發現。
1.導出整個資料庫
mysqlmp -u 用戶名 -p 資料庫名 > 導出的文件名
mysqlmp -u root -p aikersql> aiker.sql
2.導出一個表
mysqlmp -u 用戶名 -p 資料庫名 表名> 導出的文件名
mysqlmp -u aiker -p aikersql users> aiker_users.sql
3.導出一個資料庫結構
mysqlmp -u root -p -d --add-drop-table
aikersql>d:\aiker_db.sql
-d 沒有數據 --add-drop-table 在每個create語句之前增加一個drop table
二.導入資料庫
常用source 命令
進入mysql資料庫控制台,如mysql -u root -p
mysql>use 資料庫
然後使用source命令,後面參數為腳本文件(如這里用到的.sql)
mysql>source d:\aiker_db.sql
也可以用 mysql -uroot -Ddb1 <d:\aiker_db.sql
❹ SQL讀取txt內容
http://www.dedecms.com/knowledge/data-base/sql-server/2012/0821/11295.html
你看看這個,希望對你有幫助。
❺ 讓SQL自動讀取TXT數據,並處理
1、打開企業管理器,在「數據轉換服務」上點右鍵
2、選擇「所有任務」--「導入數據」,點「下一步」
3、數據源選擇文本文件,文件名選擇你要導入的TXT文件,點下一步
4、選擇「帶分隔符。各列之間可用任何字元分割」,點下一步
5、選擇分隔符,點下一步
6、選擇目的表,點下一步
7、選擇「保存DTS包」,點下一步
8、保存
1、打開企業管理器,管理,作業,新建作業
2、常規選項卡
3、步驟選項卡,類型選擇操作系統命令,命令里填寫:
DTSRun /S /E /N "新建包"
4、調度選項卡,選擇調度周期
❻ 怎樣從sql資料庫讀寫數據
樓主不會寫連接字元串嗎?
string myConnection;
myConnection='Provider=資料庫名;Password=密碼;Persist Security Info=True;User ID=賬號;Data Source=ip地址'
記不住的話可以新建一個後綴為.udl的文件,通過提示新建一個連接,測試連接成功後用記事本打開取出連接字元串即可