Viewing 15 posts - 5,191 through 5,205 (of 9,643 total)
Here are a couple of links that should help:
http://www.sqlservercentral.com/articles/SQLMail/sqlmailusingpop3andsmtp/1577/
http://www.sqlservercentral.com/articles/Administration/sqlmailresources/605/
If you have any specific questions after using these resources please post here and I'll try to get back to 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
May 5, 2009 at 7:27 am
What does the data in the month column represent? Does 109 mean January 2009? If it does then I would write something like this:
Select
Car,
...
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 5, 2009 at 7:23 am
Just a guess, but I think if you found a way to eliminate this correlated sub-query
(SELECT
COUNT(*)
FROM
...
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 5, 2009 at 7:10 am
Jeffrey Williams (5/4/2009)
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 5, 2009 at 6:59 am
You may want to look into using VBA in Excel and letting the users do the updates directly from Excel. As far as multiple users updating, it is like...
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 5, 2009 at 6:55 am
WIth SQL Server 2005 you need to have IIS installed in order to install reporting Services. Install IIS and then re-run your SQL Server setup and you should 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
May 5, 2009 at 6:49 am
While I don't think a degree in C.S. or Information Technology is necessary I certainly think it helps. I do not have a computer related degree. I 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 5, 2009 at 6:44 am
Well, first of all the code you have posted will NOT run successfully in SQL Server 2005 because it is using MySQL syntax and data types.
Next you should not...
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 4, 2009 at 1:20 pm
Jeff Moden (5/4/2009)
Ramesh (5/4/2009)
I would go with SSIS and the following link should get to startedhttp://www.sqlis.com/post/Looping-over-files-with-the-Foreach-Loop.aspx
Not a bad recommendation... I just do it all from T-SQL. I hope 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
May 4, 2009 at 12:04 pm
GilaMonster (5/4/2009)
Luke L (5/4/2009)
http://lmgtfy.com/?q=wiki+warren+zevon&l=1Be nice. 😉
I'd have googled it if I'd had a clue what to google for.
Yeah, take it easy on Gail, she can't help it if she 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 4, 2009 at 12:03 pm
The code you posted looks like it is targeted to MySQL not MS SQL Server. As Lutz said "Type=INNODB" is not valid in SQL Server and prior to SQL...
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 4, 2009 at 9:51 am
Duplicate post, please reply here
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 4, 2009 at 9:42 am
Can you post some sample data and what the desired result is?
Wouldn't something like this work:
CREATE TABLE #customers
(
customer_Id INT IDENTITY(1,1),
...
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 4, 2009 at 9:41 am
No workarounds that I can think of.
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 4, 2009 at 9:24 am
I have no idea, but I have passed it along to others who may. It looks like it is the first event when a trace is started, 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 4, 2009 at 9:21 am
Viewing 15 posts - 5,191 through 5,205 (of 9,643 total)