Posts

Showing posts from 2021

Northwind Database

  USE [master] GO /****** Object:  Database [Northwind]    Script Date: 06-03-2021 16:05:39 ******/ CREATE DATABASE [Northwind]  CONTAINMENT = NONE  ON  PRIMARY  ( NAME = N'Northwind', FILENAME = N'C:\Program Files\Microsoft SQL Server\MSSQL15.MSSQLSERVER\MSSQL\DATA\northwnd.mdf' , SIZE = 8192KB , MAXSIZE = UNLIMITED, FILEGROWTH = 65536KB )  LOG ON  ( NAME = N'Northwind_log', FILENAME = N'C:\Program Files\Microsoft SQL Server\MSSQL15.MSSQLSERVER\MSSQL\DATA\northwnd.ldf' , SIZE = 8192KB , MAXSIZE = 2048GB , FILEGROWTH = 65536KB )  WITH CATALOG_COLLATION = DATABASE_DEFAULT GO ALTER DATABASE [Northwind] SET COMPATIBILITY_LEVEL = 150 GO IF (1 = FULLTEXTSERVICEPROPERTY('IsFullTextInstalled')) begin EXEC [Northwind].[dbo].[sp_fulltext_database] @action = 'enable' end GO ALTER DATABASE [Northwind] SET ANSI_NULL_DEFAULT OFF  GO ALTER DATABASE [Northwind] SET ANSI_NULLS OFF  GO ALTER DATABASE [Northwind] SET ANSI_PADDING OFF  ...

How To Shrink And Fit To Pages When Printing In Outlook?

Image
I n Excel, you do   Fit all columns/rows on One Page . Ever thought h ow do you shrink email message content to fit to printing pagers.  Here's a trick to shrink overflowing message content and fit to pages when printing in Microsoft Outlook. To shrink message content and make it fit to page when printing, in Microsoft Outlook below are the steps: 1 . Open the email message that you want to print by double-clicking it. 2 . Click Actions  (or  Other Actions  in Outlook 2007) and select  View in Browser . NOTE: If the email message is plain text or rich text, you need to convert it to the HTML format before carrying out this Step.  You can convert an email message to the HTML format: A . In Outlook 2010 or later versions, click the  Message  >  Actions  >  Edit Message , then click the  Format Text  >  HTML ; B . In Outlook 2007, click the  Message  >  Other Actions  >  Edit ...