Sign In
Action plans and problem solving
Hello, my name is John Daskalakis and in this blog I will be gathering all the action plans and troubleshooting steps I am using in my daily work. Plus the occasional errors I encounter and how to deal with them. Cheers, John
Translate This Page
Translate this page
Powered by
Microsoft® Translator
Options
Email Blog Author
RSS for posts
Atom
RSS for comments
OK
Search
Advanced search options...
Search In:
Everything
Blogs
Forums
People
Groups
Places
Pages
Date range:
All Time
Last Year
Last 6 Months
Last 3 Months
Last Month
Last Week
Last Two Days
Tags
"Unable to load client print control"
[Microsoft][ODBC SQL Server Driver] Timeout Expired
0x080004005 reporting services 2008
0x80090016 windows 2003 2000 scheduled task
17052 Access Violation ole32.dll
database mirroring sql server 2008
DCOM ports firewall
drop partition sql 2005
event viewer profiler SCOM SQL 2005 2007
FCS 0x800106ba 2147942526
GPO Deny Group Policy
iis .net 3.5 migration
iis rewrite module file
IIS site port certificate SSL
lodctr unlodctr sqlctr.ini perfmon counters sql
MOSS SPS Version identify
MSDTC icon red
ORA-12154 DTS SSIS
project 2007 loading grid hang error
recovery complete phase sql database
replication sql performance latency
Resource Governor SQL server 2008
sql 2008 analysis audit
sql 2008 authentication mode logon
sql 2008 compression backup
Archive
Archives
July 2010
(1)
February 2010
(15)
January 2010
(5)
December 2009
(6)
November 2009
(2)
October 2009
(5)
July 2009
(8)
June 2009
(1)
May 2009
(6)
April 2009
(14)
March 2009
(10)
February 2009
(6)
January 2009
(6)
December 2008
(12)
November 2008
(37)
February, 2010
MSDN Blogs
>
Action plans and problem solving
>
February, 2010
Posts
Subscribe via RSS
Sort by:
Most Recent
|
Most Views
|
Most Comments
Excerpt View
|
Full Post View
Action plans and problem solving
How to find out if your SQL Servers are patched to a supported build (via scripting)
Posted
over 2 years ago
by
JODASK
3
Comments
Consider the following scenario: Ø You have multiple SQL Server instances in your environment (e.g. dozens or maybe hundreds). Ø You want to find out if some of them are not patched appropriately. This is what the following vbscript is...
Action plans and problem solving
How to find out the size of each database, for each of your SQL Servers in the network
Posted
over 2 years ago
by
JODASK
0
Comments
Consider the following scenario: Ø You have multiple SQL Server instances in your environment (e.g. dozens or maybe hundreds). Ø You want to find out what are the storage needs for your databases. Ø You don’t know exactly how many SQL Servers...
Action plans and problem solving
How to check your SQL Servers for blank SA passwords via scripting
Posted
over 2 years ago
by
JODASK
2
Comments
Consider the following scenario: Ø You have multiple SQL Server instances in your environment (e.g. dozens or maybe hundreds). Ø You want to make sure that the SA login does not have a blank password. Ø Due to the sheer number of SQL Server...
Action plans and problem solving
How to schedule a backup of the transaction log and how to schedule a full database backup (Step by Step guide for SQL Server 2008)
Posted
over 2 years ago
by
JODASK
0
Comments
How to schedule a backup of the transaction log In order to take a transaction log backup, you first need to check if the database is in Full Recovery model, because if the database is in Simple Recovery model, you do not need to take transaction log...
Action plans and problem solving
How to configure your 32-bit SQL Server to use more than 2 GB of memory (and be on the safe side)
Posted
over 2 years ago
by
JODASK
0
Comments
Consider the following scenario: Ø You have a 32-bit SQL Server installed on a 32-bit operating system. Ø Due to the limitations of the 32-bit OS, SQL Server can use up to 2 GB of memory (3 GB if you use the /3GB switch). Ø You want to configure...
Action plans and problem solving
Posssible root causes for the timeout error: [Microsoft][ODBC SQL Server Driver] Timeout Expired
Posted
over 2 years ago
by
JODASK
0
Comments
Consider the following scenario: Ø Your application is using the ODBC SQL driver to connect to your SQL Server. Ø You perform an operation in your application and after a while you get this error: [Microsoft][ODBC SQL Server Driver]Timeout...
Action plans and problem solving
How to automatically attach a debugger to newly created processes
Posted
over 2 years ago
by
JODASK
0
Comments
If your application is crashing, one common troubleshooting method is to attach a debugger like “adplus” on that process, so that when it crashes, the debugger will generate a process dump. Analyzing the dump is of course another matter entirely :). ...
Action plans and problem solving
Operating system error 0x80070002 when attempting to take a backup from SQL Server
Posted
over 2 years ago
by
JODASK
0
Comments
Consider the following scenario: Ø You are using a 3 rd party backup application to take SQL backups (e.g. Netbackup). Ø Your SQL Server has dozens of databases attached to it. Ø Lately you have been getting these errors when you attempt to...
Action plans and problem solving
Failover of SQL Server instance fails due to desktop heap exhaustion
Posted
over 2 years ago
by
JODASK
0
Comments
Consider the following scenario: Ø You already have setup multiple SQL Server failover instances on a Windows 2003 cluster. Ø After setting up one or more SQL Server failover instances, then failover stops working as expected. Ø Specifically...
Action plans and problem solving
Database is not accessible after the SQL Server service is restarted
Posted
over 2 years ago
by
JODASK
0
Comments
Consider the following scenario: Ø You have restarted the SQL Server service. Ø After SQL Server comes online again, one or more of the databases are inaccessible. o No queries can be executed on them. o They cannot be managed by SQL server...
Action plans and problem solving
The execute permission was denied on the object ‘xp_prop_oledb_provider’
Posted
over 2 years ago
by
JODASK
0
Comments
Consider the following scenario: Ø You are executing queries on a SQL Server linked server. Ø You are using the linked server option “Connections will be made using the login’s current security context”. Ø You receive the following error:...
Action plans and problem solving
SQL Server network backup is interrupted due to operating system error 1130
Posted
over 2 years ago
by
JODASK
0
Comments
Recently we were troubleshooting a SQL Server backup failure and we encountered this error: BackupDiskFile::RequestDurableMedia: failure on backup device '\\server\folder\sqlbackup.bak' Operating system error 1130 The backup was being taken...
Action plans and problem solving
Microsoft Support when SQL Server is running on a 3rd party virtualization solution
Posted
over 2 years ago
by
JODASK
0
Comments
Consider this scenario: Ø You are planning to migrate your SQL Server from a physical machine to a virtual machine Ø For some reason you cannot use HYPER-V Ø You are wondering how you will be supported by Microsoft since the virtual solution...
Action plans and problem solving
Advantages, disadvantages and best practices when using SQL Server in a virtualization environment
Posted
over 2 years ago
by
JODASK
0
Comments
Recently I was asked to create a list of advantages, disadvantages and some best practices when deploying SQL Server in a virtual machine, instead of a physical machine. This information was written with HYPER-V in mind, but they probably apply to most...
Action plans and problem solving
Password Age for Machine Accounts do not expire
Posted
over 2 years ago
by
JODASK
0
Comments
Since the Password Age for Machine accounts can be misleading and since I did not find this information logged anywhere in the internet, I thought worthy to dedicate a blog post to some facts, to clear things up for anyone who is worried about Password...
Page 1 of 1 (15 items)