Viewing 15 posts - 3,031 through 3,045 (of 9,643 total)
It would be easier to answer if you provided the tables, the relationships between them, and what data you are going to return.
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 19, 2010 at 2:12 pm
I haven't been in on many sessions yet.
Jason, can you get to Tom Larock's Ustream? You can at least hear the sessions.
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 19, 2010 at 2:00 pm
I know the SQL Share guys quite well and they are definitely better than the Microsoft course you'll get at New Horizons.
User Groups and SQLSaturday's are good as well.
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 19, 2010 at 2:00 pm
Here are a couple of CSS SQL Server engineer blog posts that talk about how and why the databases are frozen:
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 19, 2010 at 1:55 pm
T-SQL is not the best solution for this. You could write a .NET program that reads the paths from the database and moves the images or you could do...
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 19, 2010 at 1:48 pm
The only way I know to clear it is to restart the SQL Server Service.
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 19, 2010 at 1:44 pm
Quiet in here today. Everyone at 24 HOP?
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 19, 2010 at 1:28 pm
Can you post table definitions and some sample data? I'd like to play with a couple of things.
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 19, 2010 at 7:34 am
All right, had you said Report Builder I think you would have gotten more responses. I have not used Report Builder or report models yet, so I don't have...
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 19, 2010 at 6:30 am
Ditto for posting the actual plan.
Also, you may want to use the OPTION (MaxDOP 1) query hint because it is unlikely you need parallelism on this query and that
could...
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 19, 2010 at 6:29 am
sunitkrishna (5/19/2010)
Hey,u just copied the same query and rearranged it neatly,but dont u think the status value 'R' should be placed within single quotes?(dbo.PURCHASE_ORDER.STATUS)='R'
Actually I made several changes. 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 19, 2010 at 6:06 am
You might be better of taking the values in your in clause and putting them in a table with an index and then join on them because the IN gets...
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 18, 2010 at 9:26 pm
Can you define what you mean by "dynamic report"?
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 18, 2010 at 9:12 pm
The answer is, It depends.
Moving the report server to another server should make more resources on your SAP server, but if your performance issues are due to poor queries 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
May 18, 2010 at 9:10 pm
I think this is what you need:
SELECT
dbo.PURCHASE_ORDER.VENDOR_ID,
dbo.VENDOR.NAME,
dbo.PURCHASE_ORDER.ID,
dbo.PURC_ORDER_LINE.LINE_NO,
...
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 18, 2010 at 9:02 pm
Viewing 15 posts - 3,031 through 3,045 (of 9,643 total)