Backup msSQL server – Operating system error 5(error not found).
Monday, September 19th, 2011 Posted in Ahsay, MSSQL | No Comments »If you want to take a backup from Microsoft SQL Server management Studio, and get this error: Operating system error 5(error not found), then the problems is that the user running SQL Server services dosen't have access to the destanation ...
Ahsay restore Microsoft SQL (MSSQL) server database
Wednesday, September 14th, 2011 Posted in Ahsay, MSSQL, Windows | No Comments »If you want to restore a Microsoft SQL database, from a fuld backup, and put some transaction log file into it. (This backup has backup by ahsay) This is the why to do it: Start Microsoft SQL Server Management Studio Right click on ...
Limit SQL Server maximum memory SQL instance
Thursday, June 16th, 2011 Posted in MSSQL | No Comments »Start SQL Server Management Studio Connect to you SQL server instance Start a "New Query" And then put this into you SQLQuery1.sql window sp_configure ‘show advanced options’,1 reconfigure with override go sp_configure ‘max server memory’, 4096 reconfigure with override go Then push the execute buttom, this ...
Limit SQL Server maximum memory SQL of WSUS
Thursday, June 16th, 2011 Posted in MSSQL | No Comments »Start SQL Server Management Studio Connect to \\.\pipe\MSSQL$MICROSOFT##SSEE\sql\query Start a "New Query" And then put this into you SQLQuery1.sql window sp_configure ‘show advanced options’,1 reconfigure with override go sp_configure ‘max server memory’, 256 reconfigure with override go Then push the execute buttom, this will limit you SQL of WSUS to ...
Howto shrink / truncate SQL transaction log file in SQL Server 2005
Friday, October 15th, 2010 Posted in MSSQL, Windows | No Comments »USE <databasename> GO DBCC SHRINKFILE('<logfilename-logical name>', 1) BACKUP LOG <databasename> WITH TRUNCATE_ONLY DBCC SHRINKFILE('<logfilename-logical name>', 1) GO
Microsoft SQL (MSSQL) query for active session
Friday, October 15th, 2010 Posted in MSSQL, Windows | No Comments »Howto see active sessions in a mssql. Its pretty easy just make a new query, and run sp_who or sp_who2. sp_who shows whitch active sessions there are, and sp_who2 shows more information about the users.
Install SQL Express 2005 quiet and with DISABLENETWORKPROTOCOLS=0
Tuesday, June 17th, 2008 Posted in Computer, MSSQL, Windows | No Comments »First you need to download SQL Express 2005 setup files, there can be done from microsoft homepage. Then when you have download the setup files, you need to extract it, it can be done by typing: SQLEXPR.EXE -x It then ask you a ...