vote up -6 vote down star

80-20 rule in action in my relationships with T-SQL is sooo true. I like 20% of T-SQL, and remaining 80% is a massive PITA. It's 2009, and T-SQL still does not have:

  • Even rudimentary type inference (i.e. declare @i = 5; at least glad they added declare @i int = 5 in SQL Server 2008)
  • Consistency in calling sprocs/functions/built-in functions (i.e. exec foo executes a sproc, whereas exec("foo") executes whatever there is in the string supplied)
  • Consistency in declaring parameters to sprocs/functions. Drives me mad.
  • Absolutely arbitrary and incomprehensible limitations with regards to what sprocs and functions can and can not do (i.e. I cannot call a sproc from within a function)
  • Inability to exec a sproc directly into table-variable (set @t = exec sp_foo) without having to define it first.

Over to you. What are your "favorite" ones?

EDIT Downvoters, wouldn't you mind explaining a reason for not liking the question?

flag

58% accept rate
So you are mad that SQL is strongly typed? Just out of curiosity are you a VB Programmer? – Chris Lively Apr 22 at 14:21
i feel sql is good at what it is already. – Charlie Apr 22 at 14:22
I have no problem with this stuff, seems to me the database scares you or you do not understand why certain things are the way they are – SQLMenace Apr 22 at 14:23
@Chris No, I'm a C# programmer and I got used to a smart compiler. Type inference does not make a language weakly typed. – Anton Gogolev Apr 22 at 14:25
Absolutely arbitrary and incomprehensible limitations with regards to what sprocs and functions can and can not do (i.e. I cannot call a sproc from within a function) I don't think that's arbitrary. There is probably very good reasons because it is like that. – Skurmedel Apr 22 at 14:26
show 12 more comments

closed as not programming related by bdukes, Patrick McElhaney, LFSR Consulting, DJ, Rich B Apr 22 at 14:34

3 Answers

vote up 0 vote down
  • The madness you have to go through to construct dynamic queries in a sproc.
  • The tight coupling of all entities with files on disk, and the absolute horror involved in moving them around.
link|flag
The second point you made has absolutely nothing to do with T-SQL as a language. – Anton Gogolev Apr 22 at 14:55
vote up 5 vote down

I don't use T-SQL to write business logic, so I don't care.

link|flag
vote up 1 vote down

declare @i = 5

so what is this? Is it a tinyint, a smallint, an int or a bigint?

if you don't define the exact same type as your column you will get conversions in your WHERE clause which will hinder performance

link|flag
Most compliers I know of default integral constant type to some equivalent of int (or bigint, if the value is too big). – Anton Gogolev Apr 22 at 14:26
And that is the problem select * from table where value = 1 will make 1 an int, if your column is a bigint you will get a conversion – SQLMenace Apr 22 at 14:28
SQL is not compiled in that sense. datatypes is also very important for efficient storage – gbn Apr 22 at 14:29
And that's exactly what you DON'T want in SQL. Converting in your predicates can have disastrous effects on expensive queries. Specify the type. Is it really that difficult? It's not like you have types named like System.Collections.Generic.List<MyNamespace.MyType.SubType> in SQL. – Adam Robinson Apr 22 at 14:29
1  
@SQLMenace So what's the problem in converting 1 to bigint if SQL knows the type of the column? – Anton Gogolev Apr 22 at 14:30
show 7 more comments

Not the answer you're looking for? Browse other questions tagged or ask your own question.