MSSQLFUN
Cumulative Update – 6 for SQL Server 2012 Is Now Available !
The 6thcumulative update release for SQL Server 2012 is now available. Cumulative Update 6 contains all the hotfixes released since the initial release of SQL Server 2012.
Those who are facing severe issues with their environment, they can plan to test CU6 in test environment & then move to Production… Read more
0 comments, 222 reads
Posted in MSSQLFUN on 19 February 2013
Cumulative Update – 11 for SQL Server 2008 R2 Service Pack 1 Is Now Available !
The 11thcumulative update release for SQL Server 2008 R2 Service Pack 1 is now available for download at the Microsoft Support site. Cumulative Update 11 contains all the hotfixes released since the initial release of SQL Server 2008 R2 SP1.
Those who are facing severe issues with their environment, they… Read more
0 comments, 255 reads
Posted in MSSQLFUN on 19 February 2013
Backup not starting for Database with Full Text Catalog…………..Failed to change the status to RESUME for full-text catalog in database. Error: 0×80043607
Issue :-
One of our Database with Full Text Catalog is not getting backed up. When I checked, backup keeps pending on 0% without any progress. In SQL server error log, I also found error related to Full text catalog that SQL server is facing issue in setting Full test… Read more
0 comments, 189 reads
Posted in MSSQLFUN on 14 February 2013
Connect PerfMon to a Remote Server
It seems to be a simple & easy thing to connect Perfmon to a remote server.
GO TO RUN > Perfmon > Right Click “Connect to Another Computer” > Enter server name & you are done
But I face several connectivity issue during connecting Perfmon from remote server.
ISSUE 1:… Read more
1 comments, 237 reads
Posted in MSSQLFUN on 14 February 2013
How to get list of all available parameter of .EXE file ?
Today, We discuss How to get list of all available parameter of .EXE file OR How to find list of SQL Server setup parameters ?
Major problem is of all available parameter details. Sometime, We need to pass parameter to .EXE file to get some different & superior functionality.
We… Read more
1 comments, 187 reads
Posted in MSSQLFUN on 13 February 2013
Refresh Intellisense in SSMS(SQL Server Management Studio) 2008 & above
Intellisense is a new feature that comes with SSMS(SQL Server Management Studio) 2008 onwards. Intellisense makes coding quite easy.
But Sometimes I find that intellisense becomes stale and you start getting the wavy red lines when writing code. Even though object exists in database but Intellisense is not able to… Read more
3 comments, 286 reads
Posted in MSSQLFUN on 11 February 2013
Move or Relocate the files of Resoruce Database in SQL Server 2005
The Resource database is a read-only database that contains all the system objects that are included with SQL Server. SQL Server system objects, such as sys.objects, are physically persisted in the Resource database, but they logically appear in the sys schema of every database. The Resource database does not contain… Read more
3 comments, 183 reads
Posted in MSSQLFUN on 7 February 2013
Microsoft SQL Server License Helpline
Microsoft SQL Server license has lots of flavors in terms of user based \ CAL or processor based license, license based on versions or license based on environment (physical or virtual).
Although, Microsoft release license guidelines for each & every SQL server version. But there are more complex scenarios for… Read more
0 comments, 194 reads
Posted in MSSQLFUN on 5 February 2013
How to find/modify SQLServer Agent logfile location?
1. To get the location of SQLServer Agent log file, the log file is called SQLAGENT.out
DECLARE @AGENT_ERRORLOG NVARCHAR(255)
EXECUTE MASTER.DBO.XP_INSTANCE_REGREAD N’HKEY_LOCAL_MACHINE’,
N’SOFTWAREMICROSOFTMSSQLSERVERSQLSERVERAGENT’,
N’ERRORLOGFILE’,
@AGENT_ERRORLOG OUTPUT,
N’NO_OUTPUT’
SELECT @@SERVERNAME SERVERNAME, @AGENT_ERRORLOG AGENTERRORLOGLOCATION
This command will work for both default & named instance.
2. To modify location and name of SQLServer… Read more
0 comments, 317 reads
Posted in MSSQLFUN on 31 January 2013
SQL Server Silent unattended installation using configuration file
1) Open Installation Wizard
2) Select Feature You want to install
3) Provide installation configuration
4) Now that you have the configuration file, copy it to your own folder or network share where you want to start the… Read more
1 comments, 365 reads
Posted in MSSQLFUN on 29 January 2013
Cumulative Update – 2 for SQL Server 2012 Service Pack 1 Is Now Available !
The 2nd cumulative update release for SQL Server 2012 Service Pack 1 is now available. Cumulative Update 2 contains all the hotfixes released since the initial release of SQL Server 2012 SP1.
Those who are facing severe issues with their environment, they can plan to test CU2 in test environment… Read more
0 comments, 362 reads
Posted in MSSQLFUN on 26 January 2013
Cumulative Update – 9 for SQL Server 2008 Service Pack 3 Is Now Available !
The 9th cumulative update release for SQL Server 2008 Service Pack 3 is now available. Cumulative Update 9 contains all the hotfixes released since the initial release of SQL Server 2008 SP3.
Those who are facing severe issues with their environment, they can plan to test CU9 in test environment… Read more
0 comments, 387 reads
Posted in MSSQLFUN on 23 January 2013
SQL Server Reserve 1 user connection for DAC (Dedicated Administrator Connection)……want to confirm ?
Sometime before, I was giving training on basics of SQL Server. One of attendee is having doubt & want to confirm that SQL Server really Reserve 1 user connection for DAC (Dedicated Administrator Connection).
So I decide to show a demo for the same. I have changed the no. of… Read more
0 comments, 232 reads
Posted in MSSQLFUN on 21 January 2013
Reminder about your invitation from Rohit Garg – MCTS, Microsoft Community Contributor
| ||||||||||||||||||||||||||
0 comments, 224 reads
Posted in MSSQLFUN on 21 January 2013
The server principal “xxxx” is not able to access the database “msdb” under the current security context.
Problem :
Yesterday Night, One of my team member called & report that some users are getting below error no. 1 while connection to SQL server & error no. 2 while trying to open Management folder.
Error 1 : Cannot display policy health state at the server level, because the… Read more
1 comments, 608 reads
Posted in MSSQLFUN on 15 January 2013
Under which user your SQL Agent Job run : SQL Agent Service Account or SQL Agent Job Owner ?
Today, I am willing to do demo that under which user my SQL Agent Job run, SQL Agent Service Account or SQL Agent Job Owner ?
Normally, We think its SQL Agent Service account user under which SQL jobs runs. But it’s not true in all cases, It depend on… Read more
0 comments, 288 reads
Posted in MSSQLFUN on 11 January 2013
The EXECUTE permission was denied on the object 'sp_start_job', database 'msdb', schema 'dbo'.
1 comments, 193 reads
Posted in MSSQLFUN on 9 January 2013
The EXECUTE permission was denied on the object ‘sp_start_job’, database ‘msdb’, schema ‘dbo’.
Issue : Today I have read one issue over one forum, One user is having below 3 DB roles on MSDB but whenever user try to run SQL Agent job, it get below error message.
We have Checked that SQL Agent job related DB role is properly given to user.… Read more
13 comments, 465 reads
Posted in MSSQLFUN on 9 January 2013
How to move file through FTP by CMD ?
CMD code to upload file direct into root of FTP site of server
@ echo off
REM ******** this batch file is to upload file
echo user username> ftpcmd.dat
echo password>> ftpcmd.dat
echo bin>> ftpcmd.dat
echo lcd D:\Filelocation>>ftpcmd.dat
echo put filename.csv>> ftpcmd.dat
echo quit>> ftpcmd.dat
ftp -n -s:ftpcmd.dat 172.xx.xx.xxx
del… Read more
3 comments, 225 reads
Posted in MSSQLFUN on 7 January 2013
What happen, If SQL Server new instance try to use exitsing named instance name?
We all know that SQL Server can have 1 default instance & many named instance.
But I want to check, How SQL Server Setup behave, If I tries to use instance name that is already being used by some existing SQL server on my system.
I am already having 2… Read more
7 comments, 294 reads
Posted in MSSQLFUN on 4 January 2013



Subscribe to this blog