Viewing 15 posts - 5,941 through 5,955 (of 9,643 total)
On SQL Server 2005 you could query the default trace which audits object altered, created, deleted with a query like this:
SELECT
TE.[name] AS event_name,
...
February 18, 2009 at 9:00 am
Right and what Ramesh is saying, and I am agreeing with, is that it appears that there was an error in the SP2 install on the server where sp_send_dbmail is...
February 18, 2009 at 8:37 am
Please read the articles linked in my signature for how to post in order to get better answers. I will attempt to answer your question, but without the information...
February 18, 2009 at 8:35 am
Ramesh (2/18/2009)
Jack Corbett (2/18/2009)
Actually this was changed in SP1, see this blog post - http://wiseman-wiseguy.blogspot.com/2008/03/64-bit-database-mail-sql-server-agent.html
...I was actually correcting my statement in a new reply but you beat me on it:D.
Now...
February 18, 2009 at 8:24 am
rahul170 (2/18/2009)
I ran the query - SELECT SERVERPROPERTY('productversion'), SERVERPROPERTY ('productlevel'), SERVERPROPERTY ('edition')Below is the result:
9.00.3042.00SP2Standard Edition
Is it the same on both servers? That is the base SP2 install.
February 18, 2009 at 8:03 am
Ramesh (2/18/2009)
February 18, 2009 at 7:59 am
rahul170 (2/18/2009)
Yes both servers are using service pack 2
What about CU's?
February 18, 2009 at 7:42 am
Duplicate post. Please post answers here: http://www.sqlservercentral.com/Forums/Topic659347-146-1.aspx
February 18, 2009 at 7:18 am
Are both the servers at the same patch/service pack level?
February 18, 2009 at 7:17 am
You can use transactional replication and there is a way to NOT replicate deletes. Check out this blog post about how: http://kendalvandyke.blogspot.com/2008/12/hey-i-said-not-to-replicate-delete.html
February 18, 2009 at 7:13 am
I have to ask, why are the database names different? Is your dev environment on the same box as your production environment?
February 18, 2009 at 7:10 am
Ramesh (2/18/2009)
February 18, 2009 at 7:09 am
I believe that you need to set the Report Server Virtual Directory to allow anonymous connections. But I could be wrong.
February 18, 2009 at 7:05 am
Can you post the code you are using to bind the report to the report viewer? Are you sure that you spelled the path correctly (no typos)?
February 18, 2009 at 6:57 am
You would need to go through each sp and add the WITH ENCRYPTION option to the script. If you always want to create procedures with encryption you could create...
February 18, 2009 at 6:54 am
Viewing 15 posts - 5,941 through 5,955 (of 9,643 total)