Viewing 15 posts - 196 through 210 (of 297 total)
- Does the SQL agent have access to pick up the files?
- What account are you using?
- Is the file set to read-only?
July 28, 2009 at 2:35 am
gregory.hill (7/24/2009)
July 24, 2009 at 11:00 am
jamie (7/24/2009)
July 24, 2009 at 7:11 am
GRE (7/23/2009)
a colleague of mine has reviewed a few monitoring tools back last year and wrote an article on it...His article can be found here:
http://www.gre-sqlserver-solutions.com/MonitoringTools.html
Hope it helps
GRE: Nice...
July 23, 2009 at 9:12 am
Report builder itself is for novice users (with the exception of formula's - but anyone with Excel exp can pick these up pretty quickly).
IMO, keep report builder simple for end...
July 23, 2009 at 7:12 am
Hi
I use the idera product.
IMO it is one of the good one's. Plus it has a number of other tools that are extremely useful (SQL Safe - backup compression/encrpt).
-...
July 23, 2009 at 4:41 am
Hi
Have you tried the link below...
July 23, 2009 at 1:51 am
This works ok in 2005
select *
from tempdb..sysobjects
where name like '#tablename%'
or just use
where name like '#%'
July 22, 2009 at 9:26 am
You will need to installed SQL 2k SP3 (as stated in the link).
Within each SQL Server instance you can set the Min/Max memory. Make sure you leave enough the OS...
July 21, 2009 at 10:48 pm
Hopeful enough infor in the link below
http://mattiasgeniar.be/2008/07/16/installing-sql-2000-and-sql-2005-on-the-same-server/
July 21, 2009 at 9:16 am
As matt has stated you need to add "FailoverPartner=ServerB" to your connections string (assuming your using OLEDB).
Matts link show with diff values for other providers.
This also is the same for...
July 21, 2009 at 9:03 am
What does SELECT @@SERVERNAME
return?
You could also try added it manually (from BOL)
EXECUTE msdb.dbo.sysmail_add_account_sp
@account_name = 'AdventureWorks Administrator',
@description = 'Mail account for administrative...
July 17, 2009 at 9:07 am
Try
SELECT (SELECT name FROM sys.dm_exec_sql_text(sql_handle) a JOIN DATABASENAME.sys.all_objects b ON a.objectid = b.object_id),
(SELECT substring(text, stmt_start/2,
...
July 17, 2009 at 2:27 am
Viewing 15 posts - 196 through 210 (of 297 total)