- Select the current column [Ctrl] + [Space]
- Select the current row [Shift] + [Space]
- Edit the active cell [F2]
- Move to the beginning of the worksheet [Ctrl] + [Home]
- Move to the last cell on the worksheet [Ctrl] + [End]
- Paste a name into a formula [F3]
- Paste a function into a formula [Shift] + [F3]
- Alternate value/formula view [Ctrl] + [`] (on key [1])
- Calculate all sheets in all open workbooks [F9]
- To go to a cell quickly [F5] or [Ctrl] + [G]
- Display the Find dialog box [Shift] + [F5]
- Display the Format Cells dialog box [Ctrl] + [1]
- Create a chart [F11]
- Insert a new sheet [Alt] + [Shift] + [F1]
- Repeat the last action [F4]
- Repeat Find [Shift] + [F4]
- Open [Ctrl] + [F12]
- Exit [Ctrl] + [F4]
- Check spelling of current cell [F7]
- Activate the menu bar [F10]
- Display the Macro dialog box [Alt] + [F8]
- Apply outline to active cell [Ctrl] + [Shift] + [&]
- Convert to a percentage [Ctrl] + [Shift] + [%]
- Select all filled cells around active cell [Ctrl] + [Shift] + [*]
- Move to next sheet [Ctrl] + [Page Down]
- Move to previous sheet [Ctrl] + [Page Up]
- Complete a cell entry and move up [Shift] + [Enter]
- Complete a cell entry and move right [Tab]
- Complete a cell entry and move left [Shift] + [Tab]
- Edit a cell comment [Shift] + [F2]
- Print [Ctrl] + [P]
- Insert current date [Ctrl]
- Insert current date and time [Ctrl] + [Shift]
Adding a linked Server using the GUI There are two ways to add another SQL Server as a linked server. Using the first method, you need to specify the actual server name as the “linked server name”. What this means is that everytime you want to reference the linked server in code, you will use the remote server’s name. This may not be beneficial because if the linked server’s name changes, then you will have to also change all the code that references the linked server. I like to avoid this method even though it is easier to initially setup. The rest of the steps will guide you through setting up a linked server with a custom name: To add a linked server using SSMS (SQL Server Management Studio), open the server you want to create a link from in object explorer. In SSMS, Expand Server Objects -> Linked Servers -> (Right click on the Linked Server Folder and select “New Linked Server”) Add New Linked Server The “New Linked Server” Dialog a...
Comments
Post a Comment