Viewing 15 posts - 8,101 through 8,115 (of 9,643 total)
How are you deleting the database? The DROP Database command? When it is offline you can just delete the .mdf file and that won't be logged anywhere.
As...
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 5, 2008 at 12:44 pm
You can do this through SSMS, if you are running 2005. You can also do this on the web by going to http://reportserrvername/reports. By default, just like in...
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 5, 2008 at 12:36 pm
Max Mulawa (8/5/2008)
I think this is pretty brave advice to tell to replace clustered index on the table with nonclustered one. What about other queries, maybe it’s being used...
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 5, 2008 at 12:32 pm
It sounds like you could make this work. Without knowing what the errors are it is hard to suggest any solutions 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 5, 2008 at 12:27 pm
By using dynamic sql your parameters are going out of scope. If this is how you have to do things lookup sp_execute_sql in BOL and use 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 5, 2008 at 12:25 pm
The error is saying that some of your data IS being truncated which means that the length of either name or desc in the statecodes table is not set long...
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 5, 2008 at 12:21 pm
It sounds like you are not setup to be able to deploy reports to the Report Server. You need to get into Report Manager and make sure you are...
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 5, 2008 at 12:16 pm
tosscrosby (8/5/2008)
...Outlook was already installed so I now use SQL Mail, again, taking the easy way out...;)
Even with Outlook installed I wouldn't call using SQLMail the easy way out. ...
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 5, 2008 at 12:15 pm
Your code does not work because you reference the Insert table, which, unless you have created it in your database, does not exist. I think you want the virtual...
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 5, 2008 at 12:12 pm
At my last job we used XP_SMTP_SENDMAIL (http://sqldev.net/xp/xpsmtp.htm) on all our SQL 7 and 2000 servers so we could get away from SQL Mail except for alerts and failed job...
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 5, 2008 at 12:00 pm
You need to use a For Each loop container. Set the Enumerator to For Each File. Then you can apply a criteria for the file name like tr*.csv...
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 5, 2008 at 11:52 am
sonia (8/5/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
August 5, 2008 at 11:47 am
Check out this blog post:
http://zulfiqar.typepad.com/zulfiqars_web/2006/11/ssis_passing_pa.html
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 5, 2008 at 11:44 am
This is probably overly simplified, but here are the basics. Statistics are a histogram of the values in an index or column that the query optimizer uses to determine 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 5, 2008 at 11:13 am
The single quote " ' " is the string "wrapper" in SQL Server so whenever SQL Server encounters it, it thinks it is the start of a character string. ...
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 5, 2008 at 10:57 am
Viewing 15 posts - 8,101 through 8,115 (of 9,643 total)