Conventions
In this book, you will find a number of styles of text that distinguish between different kinds of information. Here are some examples of these styles, and an explanation of their meaning.
Code words in text, database table names, folder names, filenames, file extensions, pathnames, dummy URLs, user input, and Twitter handles are shown as follows: "Select the BI Publisher Reports
folder, which you created in the previous exercise."
A block of code is set as follows:
select dg.DepartmentGroupName, d.CalendarYear, sum(f.Amount) from DimDepartmentGroup dg,
When we wish to draw your attention to a particular part of a code block, the relevant lines or items are set in bold:
DECLARE @collate sysname SELECT @collate = convert(sysname, serverproperty('COLLATION')) IF ( charindex(N'_CI', @collate) > 0 ) BEGIN select @collate = replace(@collate, N'_CI', N'_CS')
Any command-line input or output is written as follows:
C:Javajdk1.8.0_74binjava.exe -jar fmw_12.2.1.0.0_infrastructure.jar
New terms and important words are shown in bold. Words that you see on the screen, in menus or dialog boxes for example, appear in the text like this: "Click on the Save button."
Note
Warnings or important notes appear in a box like this.
Tip
Tips and tricks appear like this.