Viewing 15 posts - 1,561 through 1,575 (of 9,643 total)
SQL Server is going to grab all the memory it can regardless of how much you put in there. If you add memory I wouldn't adjust the max memory...
Jack Corbett
Consultant - Straight Path Solutions
Check out these links on how to get faster and more accurate answers:
Forum Etiquette: How to post data/code on a forum to get the best help
Need an Answer? Actually, No ... You Need a Question
May 31, 2012 at 5:27 pm
I'd definitely suggest adding a dedicated SSRS box. Until then I'd reduce the max memory for the SQL Server database engine to free up memory for SSRS and the...
Jack Corbett
Consultant - Straight Path Solutions
Check out these links on how to get faster and more accurate answers:
Forum Etiquette: How to post data/code on a forum to get the best help
Need an Answer? Actually, No ... You Need a Question
May 31, 2012 at 2:15 pm
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...
Jack Corbett
Consultant - Straight Path Solutions
Check out these links on how to get faster and more accurate answers:
Forum Etiquette: How to post data/code on a forum to get the best help
Need an Answer? Actually, No ... You Need a Question
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
Jack Corbett
Consultant - Straight Path Solutions
Check out these links on how to get faster and more accurate answers:
Forum Etiquette: How to post data/code on a forum to get the best help
Need an Answer? Actually, No ... You Need a Question
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...
Jack Corbett
Consultant - Straight Path Solutions
Check out these links on how to get faster and more accurate answers:
Forum Etiquette: How to post data/code on a forum to get the best help
Need an Answer? Actually, No ... You Need a Question
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...
Jack Corbett
Consultant - Straight Path Solutions
Check out these links on how to get faster and more accurate answers:
Forum Etiquette: How to post data/code on a forum to get the best help
Need an Answer? Actually, No ... You Need a Question
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...
Jack Corbett
Consultant - Straight Path Solutions
Check out these links on how to get faster and more accurate answers:
Forum Etiquette: How to post data/code on a forum to get the best help
Need an Answer? Actually, No ... You Need a Question
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...
Jack Corbett
Consultant - Straight Path Solutions
Check out these links on how to get faster and more accurate answers:
Forum Etiquette: How to post data/code on a forum to get the best help
Need an Answer? Actually, No ... You Need a Question
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 ...
Jack Corbett
Consultant - Straight Path Solutions
Check out these links on how to get faster and more accurate answers:
Forum Etiquette: How to post data/code on a forum to get the best help
Need an Answer? Actually, No ... You Need a Question
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/
Jack Corbett
Consultant - Straight Path Solutions
Check out these links on how to get faster and more accurate answers:
Forum Etiquette: How to post data/code on a forum to get the best help
Need an Answer? Actually, No ... You Need a Question
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....
Jack Corbett
Consultant - Straight Path Solutions
Check out these links on how to get faster and more accurate answers:
Forum Etiquette: How to post data/code on a forum to get the best help
Need an Answer? Actually, No ... You Need a Question
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...
Jack Corbett
Consultant - Straight Path Solutions
Check out these links on how to get faster and more accurate answers:
Forum Etiquette: How to post data/code on a forum to get the best help
Need an Answer? Actually, No ... You Need a Question
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?
Jack Corbett
Consultant - Straight Path Solutions
Check out these links on how to get faster and more accurate answers:
Forum Etiquette: How to post data/code on a forum to get the best help
Need an Answer? Actually, No ... You Need a Question
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...
Jack Corbett
Consultant - Straight Path Solutions
Check out these links on how to get faster and more accurate answers:
Forum Etiquette: How to post data/code on a forum to get the best help
Need an Answer? Actually, No ... You Need a Question
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...
Jack Corbett
Consultant - Straight Path Solutions
Check out these links on how to get faster and more accurate answers:
Forum Etiquette: How to post data/code on a forum to get the best help
Need an Answer? Actually, No ... You Need a Question
May 24, 2012 at 2:10 pm
Viewing 15 posts - 1,561 through 1,575 (of 9,643 total)