Sign in
Microsoft SQL Server Front End Blog
The writers of this blog are a part of the Microsoft SQL Server Manageability team. We will be blogging about our tools, scripts, webcasts, and miscellaneous tips that will help you get the most out of SQL Agent, Data collector and other tools
Translate This Page
Translate this page
Powered by
Microsoft® Translator
Common Tasks
Blog Home
Email Blog Author
OK
RSS for comments
RSS for posts
Atom
Subscribe via RSS
Search
Tags
Activity Monitor
Backup
Data Collector
Database Mail
Powershell
Proxy
quoted_identifier
reports
Scheduler
scripting
SMO
SQL Agent
Sql Agent History
SQL Agent Logger
SQL Agent Scheduler
SQL Azure
SQl Server
SQL Server 2012 SP1
SQL Server Agent
SSMS Reports
XEvent
Monthly Archives
Archives
March 2013
(1)
February 2013
(1)
January 2013
(2)
December 2012
(1)
November 2012
(2)
September 2012
(2)
August 2012
(3)
July 2012
(2)
June 2012
(1)
May 2012
(2)
April 2012
(3)
March 2012
(2)
February 2012
(1)
January 2012
(1)
November 2011
(2)
July 2011
(4)
June 2011
(1)
April 2011
(2)
March 2011
(2)
February 2011
(3)
January 2011
(6)
December 2010
(2)
November 2010
(8)
October 2010
(6)
September 2010
(2)
MSDN Blogs
>
Microsoft SQL Server Front End Blog
Subscribe via RSS
Sort by:
Most Recent
|
Most Views
|
Most Comments
Excerpt View
|
Full Post View
Microsoft SQL Server Front End Blog
Code sample: Compressed SQL Server database backup to Windows Azure Storage
Posted
2 months ago
by
Sethu Srinivasan
1
Comments
SMO code sample to perform a compressed SQL Server database backup to Windows Azure Storage is available at http://code.msdn.microsoft.com/Backup-SQL-Server-database-0824dbfb You can read about Backup to Windows Azure Storage Service here - http:/...
Microsoft SQL Server Front End Blog
Activity Monitor in SQL Server 2012 SP1
Posted
3 months ago
by
Vladimir Svidersky MSFT
0
Comments
In SQL Server 2012 Service Pack 1 few changes were made in Activity Monitor. We had to stop using PerformanceCounterCategory class to get information about number of logical CPUs on the remote machine and switched to using more accurate information available...
Microsoft SQL Server Front End Blog
SQL Server Backup and Restore with Windows Azure Blob Storage Service
Posted
3 months ago
by
Sethu Srinivasan
0
Comments
In SQL Server 2012 SP1 Cumulative Update 2 , new feature is available to backup, restore SQL Server databases to Windows Azure Blob store. T-SQL Sample: C# Sample using SMO: You can read more about this feature here: Team...
Microsoft SQL Server Front End Blog
SQL Server 2000 will no longer be supported
Posted
3 months ago
by
Sethu Srinivasan
3
Comments
You can refer to section "SQL Server 2000 Support Information" in link - http://www.microsoft.com/en-us/sqlserver/support/support-updates.aspx . If you are using SQL 2000, please consider upgrading to latest version of SQL Server as soon as possible....
Microsoft SQL Server Front End Blog
Latest service packs and cumulative updates for SQL Server
Posted
5 months ago
by
Sethu Srinivasan
0
Comments
Links for Latest service pack and cumulative updates for SQL Server - http://technet.microsoft.com/en-us/sqlserver/ff803383.aspx
Microsoft SQL Server Front End Blog
SQL 2012 SP1 available for download
Posted
6 months ago
by
Sethu Srinivasan
0
Comments
You can download SQL 2012 SP1 from http://www.microsoft.com/en-us/download/details.aspx?id=35575 Please send us your feedback / any issues to SQL Server feedback http://connect.microsoft.com/SQLServer/feedback/
Microsoft SQL Server Front End Blog
Troubleshooting Windows Azure SQL Database
Posted
6 months ago
by
Sethu Srinivasan
0
Comments
Wayne has published blog article explaining how you could use these new DMVs to Troubleshoot SQL Azure database http://blogs.msdn.com/b/wayneb/archive/2012/11/02/introducing-sys-database-connection-stats-for-troubleshooting-windows-azure-sql-database...
Microsoft SQL Server Front End Blog
SQL Server 2012 SP1 CTP4 Now Available
Posted
7 months ago
by
Sethu Srinivasan
1
Comments
SQL Server 2012 SP1 CTP4 Now Available- http://blogs.technet.com/b/dataplatforminsider/archive/2012/09/20/sql-server-2012-sp1-ctp4-now-available.aspx Customers running SQL Server 2012 can download and test the SP1 CTP4 and send feedback to us at https...
Microsoft SQL Server Front End Blog
Management Data Warehouse overview report
Posted
8 months ago
by
Sethu Srinivasan
1
Comments
You can view all data in Management data warehouse for all instances that upload collected data to the warehouse database using "Management Datawarehouse overview report" You can view this report by following these steps 1) Open SQL Server management...
Microsoft SQL Server Front End Blog
Power shell to script tables and procedures (with dependencies) and permissions
Posted
8 months ago
by
Sethu Srinivasan
0
Comments
You can use Power shell and SMO to script out objects and its dependents in a database along with object permissions. This blogs entry has a sample power shell script that you can use to generate script in automated way.
Microsoft SQL Server Front End Blog
Community content by Jonathan Kehayias - Tracking Extended Events for a SQL Agent Job
Posted
9 months ago
by
Sethu Srinivasan
0
Comments
Tracking Extended Events for a SQL Agent Job
Microsoft SQL Server Front End Blog
Community Content by Jes Borland: The Not-So-Secret SQL Server Agent
Posted
9 months ago
by
Sethu Srinivasan
0
Comments
http://www.youtube.com/watch?v=7XY5vszCkTk&feature=youtu.be&a
Microsoft SQL Server Front End Blog
Monitoring AlwaysOn Health with PowerShell and SQL Agent
Posted
10 months ago
by
Sethu Srinivasan
0
Comments
Will Snavely did a great job of writing these blog posts. you may find it useful when you need to monitor AlwaysOn health in your automation scenarios Monitoring AlwaysOn Health with PowerShell - Part 1: Basic Cmdlet Overview http://blogs.msdn.com...
Microsoft SQL Server Front End Blog
Workaround: SQL Server 2012 - OPENROWSET on sp_help_job throws "The metadata could not be determined"
Posted
10 months ago
by
Sethu Srinivasan
1
Comments
Issue: In SQL 2012, stored procedures that call any other stored procedures or extended stored procedures that return result sets should specify WITH RESULT SETS SQL Agent's stored procedure sp_help_job - returns single resultset if no parameters...
Microsoft SQL Server Front End Blog
FIX: Incomplete Performance Condition alert in SQL Server 2012
Posted
11 months ago
by
Sethu Srinivasan
0
Comments
In SQL 2012, there was an issue with output string formatting that missed parameter replacement on the message that was sent as email for performance alerts. We have addressed this fix in SQL 2012 Cumulative update #2. You can download SQL 2012 CU2...
Microsoft SQL Server Front End Blog
Create a SQL Agent Job using Managed C++
Posted
over 1 year ago
by
Sethu Srinivasan
1
Comments
You could use the following code sample to create a SQL Agent Job using Managed C++ You can download the sample from MSDN http://code.msdn.microsoft.com/Create-SQL-Agent-job-using-f1ee5004
Microsoft SQL Server Front End Blog
Create SQL Agent job using C# and SMO
Posted
over 1 year ago
by
Sethu Srinivasan
0
Comments
You could use the following code sample to create a SQL Agent Job using C#. You can download the sample from MSDN http://code.msdn.microsoft.com/Create-SQL-Agent-job-using-b95584e7
Microsoft SQL Server Front End Blog
SQL Configuration Manager WMI issue
Posted
over 1 year ago
by
Sethu Srinivasan
1
Comments
If you see this specific issue while launching SQL Configuration Manager, you can follow the workaround specified in this blog post Workaround: Open Command Windows as Elevated administrator user cd %ProgramFiles(x86)%\Microsoft SQL...
Microsoft SQL Server Front End Blog
Resetting the Job Step Proxy
Posted
over 1 year ago
by
Jasamba
0
Comments
I would like to clarify how to reset a proxy used by specific job. Assuming that I have a job and for the first step of the job I’m using proxy, and the proxy Id = 3 If you want to reset the step proxy back to Null, how you will do it? ...
Microsoft SQL Server Front End Blog
Remove associated data collector jobs in SQL 2012
Posted
over 1 year ago
by
Sethu Srinivasan
0
Comments
In SQL 2012, you can use stored proocedure [msdb].dbo] . [sp_syscollector_cleanup_collector] to remove the associated data collector objects that were created while enabling data collector. This stored procedure deletes SQL agent jobs that were created...
Microsoft SQL Server Front End Blog
SQL Agent in SQL Server 2012 is flooding SQL Agent Logs every 90 seconds
Posted
over 1 year ago
by
Jasamba
1
Comments
Hello In SQL Agent logs for SQL Server 2012 you may see following message that appears every 90 seconds: "Reloading agent settings". It's indeed painful behavior from the user perspectives, and we will address this issue in nearest Service Pack for...
Microsoft SQL Server Front End Blog
SQL Agent Scheduler Issues
Posted
over 1 year ago
by
Jasamba
0
Comments
Hey Folks Recently we fixed several issues in SQL Agent Scheduler, so if your scheduler is not working as expected probably we have a fix, so how you can make sure that you have latest and greatest. Here the guide SQL Server 2012 RTM has it SQL...
Microsoft SQL Server Front End Blog
Index rebuild on large database - SQL Agent Powershell job
Posted
over 1 year ago
by
Sethu Srinivasan
0
Comments
Index rebuild on a large database could take longer time. One of our customer was looking for a solution to rebuild index one by one when index fragmentation is greater than 30%. Related newsgroup thread: http://social.msdn.microsoft.com/Forums/en...
Microsoft SQL Server Front End Blog
FIX: SSMS : Can no longer create or edit job steps - Creating an instance of the COM component with CLSID {AA40D1D6-CAEF-4A56-B9BB-D0D3DC976BA2} from the IClassFactory failed
Posted
over 1 year ago
by
Sethu Srinivasan
4
Comments
Our customers reported issue while launching Job step dialog on SQL 2008 R2 's Management Studio. Here is the related connection issue http://connect.microsoft.com/SQLServer/feedback/details/557402/ssms-can-no-longer-create-or-edit-job-steps Issue...
Microsoft SQL Server Front End Blog
Gathering failed job history using power shell
Posted
over 2 years ago
by
Sethu Srinivasan
0
Comments
How to use this powershell script: - Launch SQL Server PowerShell ( Start -> Run -> sqlps.exe) - Copy the following powershell script and save to file (Ex c:\JobHistory.ps1) - in SQL powershell window, type in script file path ( Ex: c:\JobHistory...
Page 1 of 3 (62 items)
1
2
3