Viewing 15 posts - 1,351 through 1,365 (of 1,409 total)
When your solution works as required, there is no need to change it. If you want to get rid of the scheduled task: in your scenario SSIS has to be...
July 16, 2008 at 7:17 am
I'm sorry, but I don't have the time to provide a answer/sample.
I can give you a hint though: probably you can use the COUNT to see how many scores are...
July 16, 2008 at 7:07 am
Can you tell which of the indexes (which index_id) are missing?
July 16, 2008 at 6:25 am
I am also very curious about how other think about this.
Recently a company asked my advice on this. After consulting some of my collegues, we decided to follow Microsoft's statement...
July 16, 2008 at 5:51 am
Microsoft has a website for troubleshooting Database Mail
http://msdn.microsoft.com/nl-nl/library/ms188663(en-us).aspx
July 15, 2008 at 12:17 pm
No, Database Mail is not available in SQL Server 2005 Express Edition.
July 15, 2008 at 8:13 am
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
Viewing 15 posts - 1,351 through 1,365 (of 1,409 total)