INA-LAI.BLOGSPOT.COM
It's My Lai成員: 小潘、小賴、兔子. 溫度、濕度、高度、風速、路線起伏都很親民. 訂閱: 文章 (Atom).
http://ina-lai.blogspot.com/
成員: 小潘、小賴、兔子. 溫度、濕度、高度、風速、路線起伏都很親民. 訂閱: 文章 (Atom).
http://ina-lai.blogspot.com/
TODAY'S RATING
>1,000,000
Date Range
HIGHEST TRAFFIC ON
Sunday
LOAD TIME
0.9 seconds
16x16
32x32
64x64
128x128
PAGES IN
THIS WEBSITE
2
SSL
EXTERNAL LINKS
26
SITE IP
172.217.6.193
LOAD TIME
0.859 sec
SCORE
6.2
It's My Lai | ina-lai.blogspot.com Reviews
https://ina-lai.blogspot.com
成員: 小潘、小賴、兔子. 溫度、濕度、高度、風速、路線起伏都很親民. 訂閱: 文章 (Atom).
ina-lai.blogspot.com
It's My Lai: 遜砲賴
http://ina-lai.blogspot.com/p/blog-page_13.html
訂閱: 文章 (Atom).
It's My Lai: 登山。旅遊。健行
http://ina-lai.blogspot.com/p/blog-page_19.html
12300;登山」與山結緣的開始+大坑路線簡介. 20160501 [健行] 福平里 來去坐火車-三義(佛頂山 3D彩繪橋). 20160309 獨立山、奉天岩、大巃嵿一日遊. 訂閱: 文章 (Atom).
TOTAL PAGES IN THIS WEBSITE
2
遜砲賴的爆肝筆記: [SQL]新增資料後取得自動新增的流水號
http://ina-work.blogspot.com/2016/04/sql.html
標籤: MS SQL. 訂閱: 張貼留言 (Atom). 從我第一份工作開始 公司的前輩就跟我說可以的話盡量不要用cursor 當時,我正在用strored procedure寫一份A3大小非常複雜的報表 似乎是遠傳的案子,小菜鳥第一支sp就複雜萬分 從此我對sp的印象就是:用程式很難做到的複雜事就交給stored p. 在MS SQL Server的SP中新增資料後 KEY如果為自動新增的流水號 可用下列方式取得 以MS SQL的範例資料庫Northwind為例 產品代碼為自動新增的流水號,新增一筆產品資料後取得產品代碼 可以使用下列三種方式取得 取得自動新增流水號方法. SP] 修改資料表描述(sp addextendedproperty,sp updateextendedproperty). 在最近的案子中 因為客戶的懶惰, 雖然我們做了後台輸入畫面 但是客戶還是要求我們把A資料庫的東西自動帶到B資料庫 雖然客戶懶惰,但工程式更不勤勞 怎麼可能用我寫好的輸入介面一筆一筆新增XD 是我們的系統做的不好嗎? IText in .NET PdfPCell文字置中.
遜砲賴的爆肝筆記: [DB] 在MS SQL Server 2012 安裝Northwind
http://ina-work.blogspot.com/2015/12/db-ms-sql-server-2012-northwind.html
DB] 在MS SQL Server 2012 安裝Northwind. 執行完之後在C槽下會多一個SQL Server 2000 Sample Databases. DB] 附加資料庫 (Attach a database in Microsoft SQL Server 2012). 超連結的訊息,大意就是你的資料庫版本不支援你的MS SQL Server版本. 直接在Microsoft SQL Server Management Studio打開來執行即可 個屁. 官方說明: https:/ technet.microsoft.com/zh-tw/library/ms187310(v=sql.105).aspx. Sp dboption 是用來修改資料庫選項的sp (其實我沒用過). 把24, 25行的程式碼註解掉在按執行,這次果然成功了! 標籤: MS SQL. 訂閱: 張貼留言 (Atom). SP] 修改資料表描述(sp addextendedproperty,sp updateextendedproperty). IText in .NET PdfPCell文字置中. 使用小月曆選擇日期時 ...
遜砲賴的爆肝筆記: iText in .NET PdfPCell文字置中
http://ina-work.blogspot.com/2014/09/itext-in-net-pdfpcell.html
IText in .NET PdfPCell文字置中. TableBase.AddCell(new PdfPCell("我是內容") ;. PdfPCell aa = new PdfPCell("我是內容");. AaVerticalAlignment = PdfPCell.ALIGN CENTER;. AaHorizontalAlignment = PdfPCell.ALIGN CENTER;. Public class PdfPCellCenter : PdfPCell {. Public PdfPCellCenter(Paragraph phrase):base(phrase) {. ThisVerticalAlignment = PdfPCell.ALIGN CENTER;. ThisHorizontalAlignment = PdfPCell.ALIGN CENTER;. TableBase.AddCell(new PdfPCell("我是內容") ;. TableBase.AddCell(new PdfPCellCenter("我是內容") ;. 標籤: .net. IText是我在剛出社會...
遜砲賴的爆肝筆記: [SP] 修改資料表描述(sp_addextendedproperty,sp_updateextendedproperty)
http://ina-work.blogspot.com/2015/12/sp-spaddextendedpropertyspupdateextende.html
SP] 修改資料表描述(sp addextendedproperty,sp updateextendedproperty). 如果使用Microsoft SQL Server Management Studio 的工具來建立資料表. 用MS SQL內建的 sp addextendedproperty. Exec sp addextendedproperty 'MS Description', '員工代碼', 'SCHEMA', 'dbo', 'table', 'Employees', 'COLUMN','EmployeeID'. Property cannot be updated or deleted. Property 'MS Description' does not exist for 'dbo.Employees.EmployeeID'. 當已經加上描述屬性,想要修改時,使用sp updateextendedproperty修改. 沒有描述屬性 → sp addextendedproperty. 已有描述屬性 → sp updateextendedproperty. CREATE PROCED...
遜砲賴的爆肝筆記: [SQL] update sql from other table 的方法(update select)
http://ina-work.blogspot.com/2015/11/sql-update-sql-from-other-table-update.html
SQL] update sql from other table 的方法(update select). Update Employee set Name = User.Name, Dept = User.Dept from User where Employee.Id = User.Id. Insert into Employee (Id,Name,Dept) select Id,Name,Dept from User. Update Employee set Name = (select Name from User where User.Id = Employee.Id). Http:/ www.blueshop.com.tw/board/FUM20041006152735ZFS/BRD201001071411558F1.html. 標籤: MS SQL. 訂閱: 張貼留言 (Atom). SP] 修改資料表描述(sp addextendedproperty,sp updateextendedproperty). Java] Jsoup - HTML 爬蟲工具. IText是我在剛出社會時 因為i...
遜砲賴的爆肝筆記: [DB] 附加資料庫 (Attach a database in Microsoft SQL Server 2012)
http://ina-work.blogspot.com/2015/12/db-attach-database-in-microsoft-sql.html
DB] 附加資料庫 (Attach a database in Microsoft SQL Server 2012). 詳情請參考: [DB] 在MS SQL Server 2012 安裝Northwind. 使用Microsoft SQL Server Management Studio的工具. 標籤: MS SQL. 訂閱: 張貼留言 (Atom). 從我第一份工作開始 公司的前輩就跟我說可以的話盡量不要用cursor 當時,我正在用strored procedure寫一份A3大小非常複雜的報表 似乎是遠傳的案子,小菜鳥第一支sp就複雜萬分 從此我對sp的印象就是:用程式很難做到的複雜事就交給stored p. 在MS SQL Server的SP中新增資料後 KEY如果為自動新增的流水號 可用下列方式取得 以MS SQL的範例資料庫Northwind為例 產品代碼為自動新增的流水號,新增一筆產品資料後取得產品代碼 可以使用下列三種方式取得 取得自動新增流水號方法. SP] 修改資料表描述(sp addextendedproperty,sp updateextendedproperty). 使用小月曆...
遜砲賴的爆肝筆記: [Java] Jsoup - HTML 爬蟲工具
http://ina-work.blogspot.com/2016/10/java-jsoup-html.html
Java] Jsoup - HTML 爬蟲工具. Jsoup官網 https:/ jsoup.org/. Http:/ en.wikipedia.org/". 要找出https:/ en.wikipedia.org/wiki/Main Page中id為mp-itn中粗體的連結. JQuery Selector方式請參考 https:/ api.jquery.com/category/selectors/. Https:/ tw.stock.yahoo.com/d/i/rank.php? Http:/ fubon-ebrokerdj.fbs.com.tw/Z/ZG/ZG A.djhtm. 除了parse html外,還可以插入element,像這樣. Docselect("#messageTab1").append(" span test /span ");. 訂閱: 張貼留言 (Atom). SP] 修改資料表描述(sp addextendedproperty,sp updateextendedproperty). IText in .NET PdfPCell文字置中. 使用小月曆選擇日期時 通常我都用...
遜砲賴的爆肝筆記: SQL
http://ina-work.blogspot.com/p/sql.html
1 [SP] 修改資料表描述(sp addextendedproperty,sp updateextendedproperty). 2 [DB] 在MS SQL Server 2012 安裝Northwind. 3 [DB] 附加資料庫 (Attach a database in Microsoft SQL Server 2012). 4 [SQL] update sql from other table 的方法(update select). 5 [SQL] 如何執行自己組合的SQL字串(sp executesql). 6 [SP] 在有trigger的Table下,無法執行insert select指令? 8 [程式] stored procedure中不使用cursor逐步讀取資料列的方法. 訂閱: 文章 (Atom). 在MS SQL Server的SP中新增資料後 KEY如果為自動新增的流水號 可用下列方式取得 以MS SQL的範例資料庫Northwind為例 產品代碼為自動新增的流水號,新增一筆產品資料後取得產品代碼 可以使用下列三種方式取得 取得自動新增流水號方法. 使用小月曆選擇日期時 ...
遜砲賴的爆肝筆記: [程式] stored procedure中不使用cursor逐步讀取資料列的方法
http://ina-work.blogspot.com/2015/07/stored-procedurecursor.html
從此我對sp的印象就是:用程式很難做到的複雜事就交給stored procedure吧!! 沒錯!!就是效能,回到第一句話,前輩說用cursor會影響效能. 還問前輩 "不用cursor的話為什麼要用stored procedure寫?". Cursor通常用來逐筆處理資料使用,下面是一個簡單的範例(MS SQL Server 2008). Declare @myId int declare @myName nvarchar(20) declare @myCursor CURSOR set @myCursor = CURSOR FAST FORWARD FOR SELECT ID, NAME FROM Employee open @myCursor INTO @myId, @myName WHILE @ FETCH STATUS = 0 BEGIN - To Something FETCH NEXT FROM @myCursor INTO @myId, @myName END CLOSE @myCursor DEALLOCATE @myCursor. Declare @myId int declare ...
遜砲賴的爆肝筆記: TWCA申請與憑證安裝(keytool)
http://ina-work.blogspot.com/2015/11/twcakeytool.html
並且貼心的附上連結 http:/ www.twca.com.tw/portal/service/ssl 1 3.html. Keyalg RSA -keysize 2048 -keystore C: keystore xxxxx.jks -storepass xxxxxxxx -keypass xxxxxxxx. 記得紅色別名(tomcat),之後安裝憑證會用到. 其中 C: keystore xxxxx.jks 可以指定絕對路徑,若不指定則產生在keytool的資料夾下. Keytool -certreq -alias tomcat -file C: keystore xxxxx.csr -keystore C: keystore xxxxx.jks -storepass xxxxxxxx -keypass. 一樣產生在 C: keystore 有個. 裡面有四個檔案root.cer, xxxx.cer, uca 1.cer, uca 2.cer. Keytool -import -trustcacerts -alias GTERoot -file C: keystore. SQL] update s...
TOTAL LINKS TO THIS WEBSITE
26
ina-la-poupee-argente001.skyrock.com
ina-la-poupee-argente001's blog - Blog de ina-la-poupee-argente001 - Skyrock.com
J'iNvItE ToUs lE MoNdE à VeNiR VoIr MoN BloG .kiss a WOrLd. 15/03/2011 at 3:34 PM. 17/03/2011 at 2:33 PM. Soundtrack of My Life. Nicki Minaj ft. Drake - Moment 4 Life. Subscribe to my blog! Nicki minaj en DEgAmAgE kOi! Don't forget that insults, racism, etc. are forbidden by Skyrock's 'General Terms of Use' and that you can be identified by your IP address (66.160.134.4) if someone makes a complaint. Please enter the sequence of characters in the field below. Posted on Thursday, 17 March 2011 at 2:27 PM.
Nom de domaine, prestataire r�f�rencement, h�bergement de site web
稲谷研究室 - トップページ
I.N.A. Fotolabor, Berlin
Arreelini Belly Dancers
Sonntag, 16. Juni 2013. Tanzen für die Flutopfer von Gruna. 8222; Harztor für Gruna 2013“- unter diesem Motto werden wieder Hilfen organisiert, die der kleinen Gemeinde Gruna, die wieder von einer „Jahrhundert-Flut“ heimgesucht wurde, zu Gute kommen sollen. Nach der großen Flut von 2002 ist diese 200-Seelen-Gemeinde auch dieses Mal wieder heftig betroffen. „Da muss man doch helfen! Diesen Post per E-Mail versenden. Montag, 20. Mai 2013. Für die Arreelini Belly Dancers wird es richtig aufregend! Auch in d...
INA - Laufen - Schadstoffmessungen in Wohnräumen und Umweltanalytik
INA Privat-Institut für naturwissenschaftliche Analytik. Landratsstraße 6, 83410 Laufen. Tel 08682 /9300, Fax 08682 /9898. Das INA Privat-Institut für naturwissenschaftliche Analytik in Laufen/Salzach. Beschäftigt sich seit 20 Jahren unter anderem mit Wohnraumschadstoffen. Es ist Mitglied in der Arbeitsgemeinschaft ökologischer Forschungsinstitute AGÖF. Schadstoffe in Wohnräumen.