Viewing 15 posts - 1,366 through 1,380 (of 1,417 total)
Use this code to see all the mails generated by Database Mail. Perhaps the status will inform you for where to look.
USE msdb ;
GO
-- show a list of all mail-items
SELECT...
July 15, 2008 at 7:29 am
shahab (7/14/2008)
how do you remove these timestamps?
Use convert(varchar, getdate(), 112)
Change the number (112) to display/use the date to your needs (see BOL on CONVERT)
July 15, 2008 at 7:23 am
You can find manual to enable and configure database-mail in BOL.
Basicly it comes down to:
1) On the SQL server: Enable 'SQL Mail' using the 'SQL Server 2005 Surface Area Configuration'
2)...
July 15, 2008 at 7:16 am
After configuring Database mail you can use the SP sp_send_dbmail to send an email. (See also BOL)
July 15, 2008 at 7:01 am
Did you create an operator and add this to the job?
July 15, 2008 at 6:59 am
Ratheesh.K.Nair (7/15/2008)
I want to migrate only the data .A new SQL 2005 DB have to be created having more constraits.
You can migrate the data without problems. When you encounter...
July 15, 2008 at 5:41 am
To check in which table(s) the duplicate rows exist, you can extract the joins from the SP to single queries and execute them seperatly.
select * from Roster where sID =...
July 15, 2008 at 5:31 am
When I applied SP2 I had the opportunity and time-window to do it off working hours. In my case I had no active users. I know it is not required...
July 15, 2008 at 5:10 am
Keep in mind that several things have changed in 2005. Check the whitepapers for the differences between 2000 and 2005. For instance many of the system tables (like sysobjects /...
July 15, 2008 at 5:07 am
Can you explain how the application is programmed to connect to the database. So: what is the connection string used by the application.
Are the users logging in to the application...
July 14, 2008 at 8:16 am
Be aware that proper permissions needs to be set on two places. First is as share-permissions (when creating the share) and second in the security tab for the access-permissions.
Check the...
July 7, 2008 at 7:43 am
there are several system tables that contain the required info.
Example:
select * from sys.database_files
select * from sys.filegroups
July 7, 2008 at 7:32 am
It is an "Operation System Error". That implies the location is not accessable. Either because you don't have accessrights, or because the location doesn't exist / isn't available.
July 7, 2008 at 7:25 am
Viewing 15 posts - 1,366 through 1,380 (of 1,417 total)