Viewing 15 posts - 8,071 through 8,085 (of 9,643 total)
Target Server memory is the max SQL Server will consume.
Total Server Memory is the amount that SQL Server IS using.
Are you running 32-bit or 64-bit? If you are running...
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
August 7, 2008 at 9:22 am
Post the execution plans, I'd be interested in seeing how SQL Server is pulling this off!
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
August 7, 2008 at 9:16 am
I have no idea why the PRint returns a 6, but the select should return a 0 because sp_executesql completed successfully. If you want to return the return value...
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
August 7, 2008 at 9:14 am
There has to be some major differences in the Query plan when returning data from the view. I'm surprised that the TOP operator speeds things up as according to...
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
August 7, 2008 at 9:03 am
You can use sp_executesql. Something like this which is from another forum post, bust should give you an idea:
Declare @sql nvarchar(max), @params nvarchar(100), @Retval Int
Set @sql = 'SELECT @Rows...
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
August 7, 2008 at 8:53 am
Grant,
Glad I didn't mention what you aren't supposed to mention. I'm not planning on going to PASS this year, but I probably will start saving up for next year...
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
August 7, 2008 at 6:58 am
The few I have gotten I have responded.
I got one today that the guy was clearly impatient as he had posted the same question in 2 forums already....
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
August 6, 2008 at 3:03 pm
Is the LenderId table a mapping table to a master LenderID?
Based on your answers I would just let the user pick the Lender by name and my query would be...
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
August 6, 2008 at 2:57 pm
Not that I am aware of. I also believe the Resource Governor limits, but does not boost. I could be wrong though.
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
August 6, 2008 at 2:50 pm
The error is telling you exactly the problem you need to move the nested table into a group row not the detail row. You can't nest data regions inside...
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
August 6, 2008 at 2:47 pm
Is LenderID character or numeric? Are the names the same for the "duplicate" lenders? Are you using 2000 or 2005? How are the LenderId's being entered? ...
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
August 6, 2008 at 2:45 pm
blnbmv (8/6/2008)
So you mean to say cursor and while both take temp tables and also you said that you wont do like that then can pls explain me how you...
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
August 6, 2008 at 1:37 pm
There is ALWAYS a transaction, you just don't have an explicit transaction. If the posted code is really the only code being run in the process then I don't...
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
August 6, 2008 at 1:32 pm
I don't know of any other way to convert that format string to datetime. If you have some way to limit the # of inserts through a join or...
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
August 6, 2008 at 1:18 pm
It looks like this is like the public database role. Every user that is granted rights to the server is put in the public server role. On my...
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
August 6, 2008 at 1:12 pm
Viewing 15 posts - 8,071 through 8,085 (of 9,643 total)