Viewing 15 posts - 106 through 120 (of 201 total)
rinu philip (7/13/2008)
Thanks sp_readerrorlog..worked!
sp_readerrorlog works fine, while we have to read all the errors in the log file, but is there a way to check only the login failures??
🙂
July 20, 2008 at 11:57 pm
Hi, you could use the msdb database and query from sysjobschedules to get the schedule, like if the job name is daily 5:30 then query :
select * from sysjobschedules where...
July 20, 2008 at 11:48 pm
rinu philip (7/17/2008)
I got it ...you can use this in a job to send mail, once database mail is configured in sql 2005!!
use msdb
EXEC msdb.dbo.sp_send_dbmail
@recipients=N'test@test.com',
@body= 'Test Email Body',
@subject...
July 20, 2008 at 11:36 pm
kristen (7/20/2008)
July 20, 2008 at 10:33 pm
george sibbald (7/20/2008)
rinu philip (7/20/2008)
Processed 85000 pages for database 'DB', file 'DB_Data' on file 1.
Processed 15272 pages for database 'DB',...
July 20, 2008 at 5:59 am
hi , think Rooman technologies or Jetking would provide you with required information:)
July 20, 2008 at 3:22 am
@recipients=N'rinup@xyz.com';'zbc@aby.com',---> delimit semi colan
forgot the quotes;)
July 20, 2008 at 3:21 am
takutoyamada (4/25/2008)
July 20, 2008 at 3:19 am
delta dirac (4/1/2008)
hi everybody,is it possible to hide my tables (i don't want customers to see my columns).
thanks.
This could be achieved ny giving specific permissions to the customers. If you...
July 20, 2008 at 3:15 am
I would love to see some interesting facts and learn more about Cusors!
July 20, 2008 at 3:10 am
Randy Barlow (3/23/2006)
July 20, 2008 at 3:08 am
Ketan Patel (7/18/2008)
What are the difference between stored procedures and SSIS ?
Stored Procedures :
A pre-complied collection of sql statements, processed as a unit. Example: sp_who, has queries that will show...
July 20, 2008 at 2:50 am
http://www.dotnetspider.com/forum/158771-Sql-Server-Integration-services-Interview-questions.aspx
check it out!!:)
July 20, 2008 at 2:38 am
karen.rogers (7/17/2008)
Is it possible to execute a batch query which is stored on the server from a Store Procedure? The query is in directory "E:\Live_restore\queries"
thats right, you can use...
July 20, 2008 at 2:34 am
Viewing 15 posts - 106 through 120 (of 201 total)