March 9, 2013 at 4:46 am
I have list of Heads like A, B, C, D....
and like to insert in a table with three column COMCOD, SIRCODE, DESCRIPTION
Primary key SIRCODE nchar(12) and starts from '1802000001000' , next '1802000002000', next '1802000003000' and so on. The will look like
COMCOD SIRCODE DESCRIPTION
3306 1802000001000 A
3306 1802000002000 B
3306 1802000003000 c
3306 1802000004000 d
.
.
.
3306 1802000021000 rtrt
March 9, 2013 at 5:36 am
Ok... so what's the question/problem?
Gail Shaw
Microsoft Certified Master: SQL Server, MVP, M.Sc (Comp Sci)
SQL In The Wild: Discussions on DB performance with occasional diversions into recoverability
March 9, 2013 at 7:51 am
zahid_7777 (3/9/2013)
I have list of Heads like A, B, C, D....and like to insert in a table with three column COMCOD, SIRCODE, DESCRIPTION
Primary key SIRCODE nchar(12) and starts from '1802000001000' , next '1802000002000', next '1802000003000' and so on. The will look like
COMCOD SIRCODE DESCRIPTION
3306 1802000001000 A
3306 1802000002000 B
3306 1802000003000 c
3306 1802000004000 d
.
.
.
3306 1802000021000 rtrt
Where is the "list of Heads"? Is it in a normalized table or in a single "cell" of a table or in a single variable. If either of the latter two, how is it stored? As a CSV, TSV, Fixed Width multi-entry or what?
As a bit of a sidebar and although I know you probably can't change it, I think it a bit insane to store numbers only values that need to be incremented (and, therefor, calculated) in an NCHAR column for several reasons. NCHAR usually makes no difference on numeric values, requires some special handling to increment, and wastes space because it requires 2 bytes per character. Your NCHAR(12) definition of this column occupies 24 bytes as opposed to just 8 bytes that would be used by a BIGINT.
Last but not least, your SIR Code appears to have a prefix and a sequence as a suffix. That also means that you have to use substring to split the 2 component parts out of the code for reporting. It would be a far better thing to store the 2 parts in separate columns and use a persisted computed column to put them together for display or reporting purposes.
If you can answer my questions as to "where" the "list of heads" is and what format it's in that I've identified in the first paragraph of this response, I'm positive that someone will be able to show you a relatively easy method to satisfy your requirements even if they, too, don't agree with the structure of the table.
--Jeff Moden
Change is inevitable... Change for the better is not.
March 10, 2013 at 12:03 am
I like to insert SIRCODE in Sequence like x= x+1000
Then it look like
Comcod Sircode Sirdesc
3306 100001000 A
3306 100002000 B
3306 100003000 C
March 10, 2013 at 4:04 am
Rauf Miah (3/10/2013)
I like to insert SIRCODE in Sequence like x= x+1000Then it look like
Comcod Sircode Sirdesc
3306 100001000 A
3306 100002000 B
3306 100003000 C
Hey Rauf, you got the attention of two of the best people there...if you answer their questions you will learn so much...
MM
select geometry::STGeomFromWKB(0x0106000000020000000103000000010000000B0000001000000000000840000000000000003DD8CCCCCCCCCC0840000000000000003DD8CCCCCCCCCC08408014AE47E17AFC3F040000000000104000CDCCCCCCCCEC3F9C999999999913408014AE47E17AFC3F9C99999999991340000000000000003D0000000000001440000000000000003D000000000000144000000000000000400400000000001040000000000000F03F100000000000084000000000000000401000000000000840000000000000003D0103000000010000000B000000000000000000143D000000000000003D009E99999999B93F000000000000003D009E99999999B93F8014AE47E17AFC3F400000000000F03F00CDCCCCCCCCEC3FA06666666666FE3F8014AE47E17AFC3FA06666666666FE3F000000000000003D1800000000000040000000000000003D18000000000000400000000000000040400000000000F03F000000000000F03F000000000000143D0000000000000040000000000000143D000000000000003D, 0);
March 10, 2013 at 9:57 am
Rauf Miah (3/10/2013)
I like to insert SIRCODE in Sequence like x= x+1000Then it look like
Comcod Sircode Sirdesc
3306 100001000 A
3306 100002000 B
3306 100003000 C
Yes. We know that. Please see my previous post. We need to know where the "List of Heads" of A, B, C, D "lives" and what format it is in.
--Jeff Moden
Change is inevitable... Change for the better is not.
March 10, 2013 at 6:36 pm
"List of Heads" of A, B, C, D data type is nvarchar(250)
March 10, 2013 at 9:34 pm
Rauf Miah (3/10/2013)
"List of Heads" of A, B, C, D data type is nvarchar(250)
Where does this data come from?
March 10, 2013 at 10:14 pm
Rauf Miah (3/10/2013)
"List of Heads" of A, B, C, D data type is nvarchar(250)
Thanks. I just got off from work and, if someone doesn't beat me to it (lots of capable folks on this forum), I'll give it a shot after work tomorrow night.
Lynn is correct, though. Is the "list of heads" in a table column that way or just in a single variable?
--Jeff Moden
Change is inevitable... Change for the better is not.
April 10, 2013 at 2:09 am
Viewing 10 posts - 1 through 9 (of 9 total)
You must be logged in to reply to this topic. Login to reply