 |
|
ถามเรื่องการ Generate Script INSERT สำหรับ Stored Procedure ทีครับว่า Gen ยังไง |
|
 |
|
|
 |
 |
|
มีวิธี Gen มั้ยครับ ถ้าปกติ gen จาก table จะได้แบบนี้
USE [SME_NCB14_DEV_20170301_NewTag]
GO
INSERT INTO [dbo].[TableName]
([x1]
,[x2]
,[x3]
VALUES
(<x1, int,>
,<x2, varchar(200),>
,<x3, varchar(200),>
GO
แต่อยาก Gen ให้เป็นรูปแบบนี้ใน stored procedure
AS
-- INSERT a new row in the table.
INSERT [dbo].[TableName]
(
[x1],
[x2],
[x3],
)
VALUES
(
@x1,
@x2,
@x3
)
มีวิธี Gen มั้ยครับ หรือต้องเขียนเองอย่างเดียว พอดี column มันเยอะนะครับ
Tag : .NET, Ms SQL Server 2005, Ms SQL Server 2008, Ms SQL Server 2012
|
|
 |
 |
 |
 |
Date :
2017-03-09 18:04:25 |
By :
zixzack |
View :
847 |
Reply :
9 |
|
 |
 |
 |
 |
|
|
|
 |
 |
|
 |
 |
 |
|
|
 |
 |
|
น่าจะต้องเขียนเองนะครับ
|
 |
 |
 |
 |
Date :
2017-03-10 09:19:34 |
By :
mr.win |
|
 |
 |
 |
 |
|
|
 |
 |
|
 |
 |
 |
|
|
 |
 |
|
Code (SQL)
USE [your_DB];
GO
SET ANSI_NULLS ON;
GO
SET QUOTED_IDENTIFIER ON;
GO
ALTER PROCEDURE proc_CreateInsertForTable
@tableName NVARCHAR(1500) --2,000, 2,500 เต็มที่ไม่เกิน 3 พัน (THB)
AS
/***************************************************************************
Written by Jennifer McCown, 9/13/2009
[email protected]
http://www.MidnightDBA.com
Not copywrited; use, modify, and distribute freely!
Description: Generate an insert statement for a given table.
@withDescription controls the appearence of the "VALUES" portion of the
generated input statement.
Please note that the insert statement will not include Identity columns.
EXEC exec proc_CreateInsertForTable @tableName = 'Video', @withDescription = 1
Last Modify By : หน้าฮี 9/14/2009
****************************************************************************/
SET NOCOUNT ON;
DECLARE @sql1 VARCHAR(MAX), @sql2 VARCHAR(MAX), @name VARCHAR(100), @type VARCHAR(100);
DECLARE @mytable TABLE
(
column_id INT, name NVARCHAR(500), system_type_id INT, max_length INT, precision INT, scale INT, is_nullable BIT, is_identity BIT, readableType VARCHAR(100)
);
INSERT INTO @myTable
SELECT column_id, c.name, c.system_type_id, c.max_length, c.precision, c.scale, c.is_nullable, c.is_identity, t.name readableType
FROM sys.columns c
JOIN sys.types t ON c.system_type_id = t.system_type_id
WHERE OBJECT_NAME(c.object_id) = @tableName
ORDER BY c.column_id;
-- Update ReadableType columns
UPDATE @myTable
SET readableType = readableType+' ('+CAST(max_length AS NVARCHAR(10)
)+')'
WHERE readableType IN
('char', 'varchar', 'nchar', 'nvarchar'
);
UPDATE @myTable
SET readableType = readableType+' ('+CAST(precision AS NVARCHAR(10)
)+', '+CAST(scale AS NVARCHAR(10)
)+')'
WHERE readableType IN
('decimal', 'numeric'
);
UPDATE @myTable
SET readableType = readableType+' ('+CAST(precision AS NVARCHAR(10)
)+')'
WHERE readableType = 'float';
-- Seed the SQL variables with INSERT syntax
SET @sql1 = 'INSERT INTO '+@tableName+' (';
SET @sql2 = ') '+'VALUES (';
-- Open a cursor to add all the columns to INSERT statement
DECLARE curInsert CURSOR
FOR SELECT name, readableType
FROM @myTable
WHERE is_identity = 0;
OPEN curInsert;
-- Get first column
FETCH NEXT FROM curInsert INTO @name, @type;
SET @sql1 = @sql1 + @name; --INSERT INTO PL_EmpPicture (EmpID
SET @sql2 = @sql2+'@'+@name;
-- Add additional columns
FETCH NEXT FROM curInsert INTO @name, @type;
WHILE @@FETCH_STATUS = 0
BEGIN
SET @sql1 = @sql1+'ฮี'+', '+@name;
SET @sql2 = @sql2+'ฮี'+', @'+@name;
FETCH NEXT FROM curInsert INTO @name, @type;
END;
CLOSE curInsert;
DEALLOCATE curInsert;
SET @sql2 = @sql2+')';
SELECT @sql1, @sql2;
PRINT @sql1 + @sql2;
SET NOCOUNT OFF;
RETURN 0;
ปล. สิ่งที่อยากได้เพิ่มเติม
--- ไม่อยากจะใช้ Cursor แต่อยากจะใช้ Table Value
--- อยากได้แบบที่ Generate Class พร้อมใช้งานบน .NET (เช่น EF/NHI/etc..)
|
 |
 |
 |
 |
Date :
2017-03-14 19:30:53 |
By :
หน้าฮี |
|
 |
 |
 |
 |
|
|
 |
 |
|
 |
 |
 |
|
|
 |
 |
|
ปกติเขียนเองคะ แต่จะใช้ Excel ช่วยในการต่อ string คะ
|
 |
 |
 |
 |
Date :
2017-03-16 11:37:10 |
By :
wija1 |
|
 |
 |
 |
 |
|
|
 |
 |
|
 |
 |
 |
|
|
 |
 |
|
Code (SQL)
DECLARE @tmp_TableA TABLE (gหอย varchar(10), gเหอ varchar(20), gPrice int)
INSERT INTO @tmp_TableA
SELECT 'ห1', 'หอย1', 1 UNION ALL
SELECT 'ห2', 'หอย2', 1 UNION ALL
SELECT 'ห3', 'หอย3', 2 UNION ALL
SELECT 'ห4', 'หอย4', 2 UNION ALL
SELECT 'ห5', 'หอย5', 3
--SELECT * FROM @tmp_TableA
DECLARE @intCount INT = 1
DECLARE @rowCount int = (SELECT COUNT('หอย') FROM @tmp_TableA)
--SET @intCount = 1
--WHILE @intCount <= @rowCount
WHILE (@intCount <= 10) BEGIN
PRINT @intCount
--CONTINUE;
IF @intCount = 4 -- This will never executed (Seed)
BEGIN
PRINT @intCount
PRINT 'Break'
BREAK;
END
ELSE BEGIN
DECLARE @tmpVar int = 0
SET @tmpVar = @tmpVar + 1
END
SELECT * FROM @tmp_TableA WHERE gPrice = @intCount
SET @intCount = @intCount + 1
CONTINUE
END
GO
ปล. นึกสนุกฯ ในขณะที่ผมกำลังพักผ่อนสมอง (+55555)
|
 |
 |
 |
 |
Date :
2017-03-18 12:53:33 |
By :
หน้าฮี |
|
 |
 |
 |
 |
|
|
 |
 |
|
 |
 |
 |
|
|
 |
 |
|
Code (VB.NET)
Imports System.ComponentModel
Imports System.ComponentModel.DataAnnotations
Public Class FullModelSampleWithoutEF
''' <summary>
''' ชื่อเมียน้อย
''' </summary>
<Required(ErrorMessage:="FirstName {0} is required")> _
<StringLength(100, MinimumLength:=1, ErrorMessage:="Name Should be minimum 1 characters and a maximum of 100 characters")> _
<DataType(DataType.Text)> _
Public Property FirstName As String
<RegularExpression("([0-9]+)", ErrorMessage:="Please enter valid Number")> _
Public Property LastName As String
<Range(1, 13, ErrorMessage:="อายุเมียน้อยต้องอยู่ระหว่าง 0 - 13 ปี (ข้อหาพรากกระชากผู้สูงวัย)")> _
Public Property Age As Integer
End Class
Validating
Code (VB.NET)
Dim obj As New FullModelSampleWithoutEF
obj.FirstName = "ABC"
obj.LastName = "A1234" 'Force Error
obj.Age = "14" 'Force Error
'Fake Validator
Dim context As System.ComponentModel.DataAnnotations.ValidationContext = New System.ComponentModel.DataAnnotations.ValidationContext(obj, Nothing, Nothing)
Dim result As List(Of System.ComponentModel.DataAnnotations.ValidationResult) = New List(Of System.ComponentModel.DataAnnotations.ValidationResult)()
Call System.ComponentModel.DataAnnotations.Validator.TryValidateObject(obj, context, result, True)
If result.Count > 0 Then
MessageBox.Show(result(0).MemberNames(0) & " : " & result(0).ErrorMessage)
Return
End If
|
 |
 |
 |
 |
Date :
2017-03-18 14:01:40 |
By :
หน้าฮี |
|
 |
 |
 |
 |
|
|
 |
 |
|
 |
 |
 |
|
|
 |
 |
|
จาก #NO 6 (นับก้าวเดินคน)
--- คุณห้ามตอบเกินวันละสองกระทู้ (คิดอยู่ในใจ+55555)
------ ผมคงไม่พกปืน M16 ออกไปเดินตลาด (หรือในที่สาธารณะ) +55555
คนเราแค่คิดดีและทำดี
เท่า(แค่) นี้ก็เพียงพอแล้ว
|
 |
 |
 |
 |
Date :
2017-03-18 14:52:24 |
By :
หน้าฮี |
|
 |
 |
 |
 |
|
|
 |
 |
|
 |
 |
 |
|
|
 |
 |
|
ในสมรภูมิรบจริง เป้าหมายคือชัยชนะ
--- สวมบทบาทอยู่แนวหน้าเป็นแค่พลทหาร และไม่คิดว่าจะมีมีชีวิตรอดกลับมาอยู่แล้ว
--- ในขณะเดียวกัน (ในใจ) สวมบทบาทจอมพล รุก/รับ (เข้าใจคำว่าแพ้/ชนะ โดยถ่องแท้)
...
...
...
ปล. ก้าวเดินของคนไม่เท่ากันและมันก็นับไม่ได้เช่นเดียวกัน (นับก้าวเดิน/นับเม็ดดินเม็ดทราย)
|
 |
 |
 |
 |
Date :
2017-03-18 15:11:22 |
By :
หน้าฮี |
|
 |
 |
 |
 |
|
|
 |
 |
|
 |
 |
 |
|
|
 |
 |
|
อารมย์เพลินตามสิ่งที่มึนเมา +5555 เล่าอะไรไปเรื่อยเปื่อยฯ มีสาระบ้างแต่ส่วนใหญ่ก็รับรู้กันดี(ไร้สาระเหมือนเดิม)
--- วรรณกรรม/นวนิยายหรือหนังกำลังดัง "สามก๊ก" ในโลกออนไลน์
เราก็ขอเล่าบ้าง (ใช้คำว่าเรา === ยอมรับว่าตัวเองยังเป็นเด็กฯ) +55555
--- นวนิยายในโลกของความเป็นจริงที่กำลังจะเล่ามีชื่อว่า "สามยก"
... +55555
... +55555
... +55555
+55555
|
 |
 |
 |
 |
Date :
2017-03-18 15:31:01 |
By :
หน้าฮี |
|
 |
 |
 |
 |
|
|
 |
 |
|
 |
 |
|
|