Viewing 15 posts - 7,831 through 7,845 (of 9,643 total)
You can get the sample databases from codeplex. Here is the link: http://www.codeplex.com/MSFTDBProdSamples
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 20, 2008 at 9:37 am
Okay Pete,
Your main problem is that in Access "&" is the concatenation operator, in SQL Server you need to use "+".
Where version of Access are you using? Access 2007...
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 20, 2008 at 8:26 am
I think Sergiy's solution with bitbucket's modification should meet your needs. Of course I would think you still would want to at least have a start date because it...
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 20, 2008 at 7:48 am
A better way to handle this is to assign the user to the correct Role(s) in the msdb database. Here is the link to the BOL description of 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
August 20, 2008 at 7:45 am
In the Background color property of the cell you need to put in an expression like this:
=switch(Fields!FieldName.Value <= 25, "Green", Fields!FieldName.Value > 25 and Fields!FieldName.Value <= 50, "Yellow",
Fields!FieldName.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 20, 2008 at 7:27 am
RaisError does not end processing of a batch. All you need to do is put a Return after the RaisError and the batch will stop there.
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 20, 2008 at 7:20 am
Check out this article, http://www.sqlservercentral.com/articles/T-SQL/63681/, it is about exactly what you are talking 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
August 19, 2008 at 8:15 pm
Jeff Moden (8/19/2008)
Took a look at it... pretty cool, Jack. Pretty nice web site, too. I gotta learn how to do that one of these days.:)
Wish I 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
August 19, 2008 at 7:34 pm
So how are you accessing the external source?
There really isn't an easy way to do it, nor is there an easy way to explain how I'd do it....
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 19, 2008 at 6:25 pm
Thanks Jeff. My blog is http://www.wiseman-wiseguy.blogspot.com. It's also at the bottom of all my posts on the little button that says "blog". 😛
That's where I put the stuff...
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 19, 2008 at 6:14 pm
It still doesn't make sense to me. How do you know that Agency 'ABC' was changed to 'XYZ', do you have a log table?
Could you post the schemas?
Shouldn't something...
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 19, 2008 at 4:12 pm
Is the number of purchases based on rows in the table or a sum of the TotalPurchased column?
Do you want to use some kind of rolling total?
I think does what...
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 19, 2008 at 2:49 pm
I don't know about you, but I am still confused.
Are you creating COMPUTED COLUMNS on a table or are you trying to create output columns in a query?...
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 19, 2008 at 2:39 pm
I'll add my 2 cents here as well, since I found this thread through another, very similar thread.
I don't use the BEGIN-END block for stored procedures. I DO use...
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 19, 2008 at 2:20 pm
If the monitoring software is running under a domain account you should be able to use a Trusted connection.
A second note is that you should not be shrinking your log...
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 19, 2008 at 2:13 pm
Viewing 15 posts - 7,831 through 7,845 (of 9,643 total)