Viewing 15 posts - 9,286 through 9,300 (of 9,644 total)
Are you getting any errors when you run the stored procedure? or is the problem that you are not getting the results you expect or no results at all?
I...
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
December 21, 2007 at 12:13 pm
Found someone else with this problem here:
http://www.devnewsgroups.net/group/microsoft.public.sqlserver.tools/topic37118.aspx
THis post suggests making sure the database compatibility level is set to 9.0 (Sql Server 2005).
EXEC sp_dbcmptlevel 'database name', '90'
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
December 21, 2007 at 12:09 pm
If you do what Steve mentioned and use a "real" table to hold the rows you want to delete you could run the select in one pass and then 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
December 21, 2007 at 11:55 am
ALTER AUTHORIZATION ON DATABASE::[dbname] to [owner]
For Example
ALTER AUTHORIZATION ON DATABASE::adventureworks to sa
Check out BOL
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
December 21, 2007 at 11:28 am
Are you sure the SQL Server service is running when you are doing the deletes?
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
December 21, 2007 at 8:44 am
In SSMS you can navigate to the DB right-click -> properties -> Options. It is the top option.
OR
exec sp_dboption [dbname], 'autoclose'
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
December 21, 2007 at 6:57 am
Have you looked at the job steps? There are parameters/options in the call to run DTS that may include the changed password.
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
December 20, 2007 at 6:55 am
SQL Agent Jobs have an owner that must have rights to run a job. Look in BOL under Proxy accounts (SQL Server Agent).
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
December 20, 2007 at 6:31 am
Here is a link to a forum where someone has SQLMail working with Notes using MAPI, but has a different problem, so it is possible to use SQLMail.
http://www.sqlteam.com/forums/topic.asp?TOPIC_ID=15912
As far 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
December 19, 2007 at 2:27 pm
My first disclaimer, I know nothing about Notes, but if you can use Outlook (not Outlook Express) to connect Notes I believe you can use SQLMail.
For SQLMail to worl 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
December 19, 2007 at 1:59 pm
Thanks for the welcome to FL. I am really enjoying the weather.
I know there is something going on as far as a Jacksonsville PASS group. There is a...
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
December 19, 2007 at 11:11 am
Brad Rhine (12/19/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
December 19, 2007 at 9:32 am
Could you use a link to another report instead of bringing all the data down?
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
December 19, 2007 at 8:54 am
If I had not gone to the meeting last night I would have done the same thing for the columns. I had always assumed that it was building 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
December 19, 2007 at 8:51 am
Did you set the Maximum Insert Commit Size on each destination? IF left to 0 it does one BIG transaction so committing after x rows will probably free resources...
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
December 19, 2007 at 8:34 am
Viewing 15 posts - 9,286 through 9,300 (of 9,644 total)