Viewing 15 posts - 1,561 through 1,575 (of 9,641 total)
I'd also do one per function. The only case might be an Upsert/Merge proc that does insert or update. Again, it is about modularity and maintenance.
A wide table...
May 31, 2012 at 10:51 am
SQL Kiwi (5/31/2012)
Greed. Steve pays me $50 per post.
Darn, I'm only getting $25 per post. Of course you probably are worth twice as much as I am.:-D
May 31, 2012 at 10:04 am
Is the column collation Case insensitive? You can set collation per column. Lynn's test modified:
CREATE TABLE #Test(TestVal VARCHAR(10) COLLATE Latin1_General_CS_AS);
INSERT INTO #Test
SELECT 'ABC' UNION ALL
SELECT 'Abc' UNION ALL
SELECT...
May 30, 2012 at 2:12 pm
GilaMonster (5/30/2012)
Too snarky?http://www.sqlservercentral.com/Forums/Topic1306465-334-1.aspx
Hard to say because the content of the question(s). I'd have a hard time not coming across as snarky if I posted any answers on that...
May 30, 2012 at 2:01 pm
I don't think there is a way to do this, but I don't know for sure. You could use a rowcount after the conditional split and if it is...
May 30, 2012 at 1:38 pm
Have you seen this blog post, http://blogs.msdn.com/b/sql_protocols/archive/2009/03/09/understanding-the-error-an-operation-on-a-socket-could-not-be-performed-because-the-system-lacked-sufficient-buffer-space-or-because-a-queue-was-full.aspx?
It's been years since I've connected to DB2, but I seem to recall seeing an error like this for a linked server or .NET...
May 30, 2012 at 1:25 pm
A calendar table is definitely the best way to do this. You can do it with a numbers/tally table or cte as well. Something like this:
WITH ...
May 30, 2012 at 1:15 pm
Have you seen this blog post: http://www.sqlservercentral.com/blogs/pearlknows/2009/08/25/database-mirroring-across-domains-using-certificates/
May 30, 2012 at 12:58 pm
I don't remember exactly when I started answering questions, but as almost everyone else has said, I did it because I first learned from this site and wanted to contribute....
May 30, 2012 at 12:47 pm
A couple of things:
1. You need a GROUP BY on your query.
2. You can address NULL values for Ac_Billbook.CostsNet 2 ways. You wrap the SUM with an...
May 30, 2012 at 7:55 am
Mark 2 (5/29/2012)
Posting for a job I just witnessed:BO/Crystal Reports Specialist
:hehe:
So does that mean you need to have BO or be able to remove BO?
May 29, 2012 at 3:51 pm
For those not on tiwtter, just signed the papers for my new house. Went from no debt to hundreds of thousands, but in the long run it'll be great!
Any...
May 29, 2012 at 3:50 pm
I don't have the answer either. I think I have accomplished what you are trying to accomplish with subreports by nestin tables. It has been a couple years...
May 24, 2012 at 2:10 pm
Evil Kraig F (5/23/2012)
YOU LOUSY PIECE OF DUNG INANE INTERFACE. MS ACCESS has more ability and stronger methodology than YOU!...
May 23, 2012 at 2:18 pm
Stefan Krzywicki (5/23/2012)
Lynn Pettis (5/23/2012)
The Dixie Flatline (5/23/2012)
Hi Lynn.I am not talking about he-who-is-without-clues.
I am talking about someone else.
Tom Brady? He'll be retiring soon.
No, he recently said he wants to...
May 23, 2012 at 2:16 pm
Viewing 15 posts - 1,561 through 1,575 (of 9,641 total)