Viewing 15 posts - 7,051 through 7,065 (of 9,643 total)
Stefan (10/30/2008)
1. Is the Foreach Loop Container the way to go?
Yes, you would use a Foreach loop. You would use the Foreach ADO Enumerator.
2. How do I get hold...
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
October 30, 2008 at 7:41 am
Hey Brandie,
I don't think there are any issues with running Developer and Express side by side.
Full-Text search comes with the Express with Advanced Services download both in 2005 and 2008....
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
October 30, 2008 at 7:22 am
Other than the fact that the 3 instances will be contending for the same resources you can install 2008 alongside 2005.
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
October 30, 2008 at 7:07 am
If you are new to SQL and triggers I would recommend you read this article so you avoid some common mistakes made in triggers: http://www.sqlservercentral.com/articles/Triggers/64214/
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
October 30, 2008 at 7:03 am
jacopasto (10/29/2008)
The sql retrieve the two notes. How i can design the query to retrieve more than two the notes (the text is different as the call result's...
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
October 29, 2008 at 10:24 am
Correct there is a lack of a start time so you would need to continue to start the trace the same way you are doing it now, but you 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
October 29, 2008 at 10:14 am
Duplicate post. Please answer here: http://www.sqlservercentral.com/Forums/Topic593709-1063-1.aspx
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
October 29, 2008 at 9:48 am
sp_trace_create has the @stoptime parameter that you can set. When you start a trace that has the stop time set the trace is stopped and removed when the stop...
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
October 29, 2008 at 9:45 am
Ahhh, thanks for letting me know. I wonder if they have looked at changing (reducing) the recovery interval on the SQL Server so the DB Engine issues CHECKPOINTS more...
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
October 29, 2008 at 7:31 am
So you want a generic query that returns the data from 1/1 to 3/31 of the current year?
If so here's one way to do it:
Declare @start_date datetime, @end_date datetime
Set...
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
October 29, 2008 at 7:28 am
Glad I could be of help. As for recommending the "IN", I'm glad you were using it in the real trigger, most of the time people who post about...
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
October 29, 2008 at 7:18 am
No they are not logged. May I ask why you are manually setting checkpoints? The Database Engine does this automatically to reduce the recovery time needed on restart.
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
October 29, 2008 at 7:16 am
I recommend:
Expert SQL Server 2005 Integration Services (Programmer to Programmer) by Brian Knight and Erik Veerman (Paperback - May 29, 2007)
Professional SQL Server 2005 Integration Services (Programmer to Programmer) by...
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
October 29, 2008 at 6:58 am
Since you are using SQL Server Express you will need to install it, if it does not already exist on each PC your application is installed to. If you want...
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
October 29, 2008 at 6:51 am
The first query is eliminating all rows based on the table BEFORE running the view so there will be fewer rows touched because the filter is on the 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
October 29, 2008 at 6:44 am
Viewing 15 posts - 7,051 through 7,065 (of 9,643 total)