Some useful Commands for Check and Maintain MSSQL Database

— Shrink Database DBCC SHRINKDATABASE (AdventureWorks2008R2, TRUNCATEONLY); — Rebuild All Index on a table ALTER INDEX ALL ON Production.Product REBUILD WITH (FILLFACTOR = 80, SORT_IN_TEMPDB = ON, STATISTICS_NORECOMPUTE = ON); — Reorganize all indexes on the HumanResources.Employee table. ALTER INDEX ALL ON HumanResources.Employee REORGANIZE ; — Check DB for database consistency DBCC CHECKDB — Reclaims …

Some useful Commands for Check and Maintain MSSQL Database Read More »

Configure Email in outlook and other email client software

Manual Settings If you do not see an auto-configuration script for your client in the list above, you can manually configure your mail client using the settings below: Secure SSL/TLS Settings (Recommended) Username: info@shresthansons.com.np Password: Use the email account’s password. Incoming Server: host.outsourcingnepal.com IMAP Port: 993 POP3 Port: 995 Outgoing Server: host.outsourcingnepal.com SMTP Port: 465 …

Configure Email in outlook and other email client software Read More »

MS SQL Server Pivot as an alternate for MS Access Tranform

Usually from small application development to large application development for single user based applications, I find MS Access considerabily easy and powerful. One good proven table design can be a good starting point for autogenerating good working forms, queries as well reports. Apart from default auto reports I find cross tab reports of ms access …

MS SQL Server Pivot as an alternate for MS Access Tranform Read More »