Viewing 15 posts - 16 through 30 (of 32 total)
It's hard to say without more information, but here's an article I found very useful when I ran into similar problems that did turn out to be an issue with...
September 13, 2011 at 10:35 am
You're seeing the length in bytes. Each NVARCHAR character takes up two bytes of storage.
September 8, 2011 at 2:36 pm
LutzM,
Ah, you're so right. I see it now. My mistake.
September 8, 2011 at 12:37 pm
E99999
F00001
...
FT9999
FU0001
...
FUB999
FUC001
...
FUCJ99
What would be the next value in the sequence?
September 8, 2011 at 12:17 pm
Jeff Moden (9/8/2011)
Fine... I don't like your implication. 😉
Fair enough.:-P
September 8, 2011 at 11:43 am
Theo Spears (9/8/2011)...
If you don't wish to do this, there is an SSMS config file you can delete that will reset your keyboard shortcuts. I can't remember the details off...
September 8, 2011 at 11:41 am
I've got it! Exclude vowels from the sequences you generate. That way the only people you might offend are the Welsh.
September 8, 2011 at 11:13 am
Jeff Moden (9/8/2011)
notoriousdba (9/8/2011)
References, or it didn't happen.
I AM the reference! 😉 Do it your way and embarass your company and possibly get sued for offending someone's sensibilities. ...
September 8, 2011 at 11:08 am
Gianluca Sartori (9/8/2011)
Jeff Moden (9/8/2011)
I AM the reference!Notorious, don't know about you, this is more than enough for me! 😉
LOL!
September 8, 2011 at 10:38 am
Jeff Moden (9/7/2011)
notoriousdba (9/7/2011)
September 8, 2011 at 6:44 am
I'd take Lowell's approach, though if the logic for converting the value in the identity column to the alpha-numeric value you want is non-trivial, you can easily abstract it to...
September 7, 2011 at 11:44 am
Piet,
Maybe you haven't been in this game long enough to know who Joe Celko is. Not for nothing, but if he talks, you should listen.
September 7, 2011 at 11:07 am
To constrain relationships the way you want, you could create an xref between relationship types and roles, defining which combinations were valid, then FK the Party Relationship table to the...
September 7, 2011 at 11:02 am
It seems to me you're only looking at data in two tables. Try this on for size:
SELECT a.JobReqID, a.JobReqCode, a.DateAdded, COUNT(DISTINCT c.CandidateID) AS SelectedCandidates
FROM RecruitmentDB.dbo.JobRequisition a
...
September 6, 2011 at 4:30 pm
I second that. Also, I'd recommend adding a flag to all of your lookup tables to allow entries to be marked as obsolete.
September 6, 2011 at 4:12 pm
Viewing 15 posts - 16 through 30 (of 32 total)