Lokasi ngalangkungan proxy:   [ UP ]  
[Ngawartoskeun bug]   [Panyetelan cookie]                
Skip to content

Commit a1ed64c

Browse files
authored
Merge pull request #7936 from MicrosoftDocs/FromPublicRepo
Confirm merge from FromPublicRepo to master to sync with https://github.com/MicrosoftDocs/sql-docs (branch live)
2 parents 37cc169 + 59206b1 commit a1ed64c

3 files changed

Lines changed: 5 additions & 5 deletions

File tree

docs/database-engine/install-windows/install-sql-server-from-the-command-prompt.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -873,10 +873,10 @@ setup.exe /q /ACTION=RemoveNode /INSTANCENAME="<Insert Instance Name>" [/INDICAT
873873
|Parameter and values|Description|
874874
|---------------|-----------------|
875875
|/FEATURES=SQLEngine|Installs the [!INCLUDE[ssDE](../../includes/ssde-md.md)] without replication and full-text.|
876-
|/FEATURES=SQLEngine, FullText|Installs the [!INCLUDE[ssDE](../../includes/ssde-md.md)] and full-text.|
877-
|/FEATURES=SQL, Tools|Installs the complete [!INCLUDE[ssDE](../../includes/ssde-md.md)] and all tools.|
876+
|/FEATURES=SQLEngine,FullText|Installs the [!INCLUDE[ssDE](../../includes/ssde-md.md)] and full-text.|
877+
|/FEATURES=SQL,Tools|Installs the complete [!INCLUDE[ssDE](../../includes/ssde-md.md)] and all tools.|
878878
|/FEATURES=BOL|Installs SQL Server Books Online components to view and manage help content.|
879-
|/FEATURES=SQLEngine, PolyBase|Installs the PolyBase engine.|
879+
|/FEATURES=SQLEngine,PolyBase|Installs the PolyBase engine.|
880880

881881
## <a name="RoleParameters"></a> Role Parameters
882882
The setup role or /Role parameter is used to install a preconfigured selection of features. The SSAS roles install an SSAS instance in either an existing SharePoint farm, or a new un-configured farm. Two setup roles are provided to support each scenario. You can only choose one setup role to install at a time. If you choose a setup role, Setup installs the features and components that belong to the role. You cannot vary the features and components that are designated for that role. For more information about how to use the feature role parameter, see [Install Power Pivot from the Command Prompt](http://msdn.microsoft.com/7f1f2b28-c9f5-49ad-934b-02f2fa6b9328).

docs/relational-databases/polybase/polybase-configure-azure-blob-storage.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -82,7 +82,7 @@ To query the data in your Hadoop data source, you must define an external table
8282
CREATE EXTERNAL FILE FORMAT TextFileFormat WITH (
8383
FORMAT_TYPE = DELIMITEDTEXT,
8484
FORMAT_OPTIONS (FIELD_TERMINATOR ='|',
85-
USE_TYPE_DEFAULT = TRUE)
85+
USE_TYPE_DEFAULT = TRUE))
8686
```
8787

8888
1. Create an external table pointing to data stored in Azure storage with [CREATE EXTERNAL TABLE](../../t-sql/statements/create-external-table-transact-sql.md). In this example, the external data contains car senor data.

docs/t-sql/functions/formatmessage-transact-sql.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -89,6 +89,7 @@ SELECT FORMATMESSAGE('This is the %s and this is the %s.', 'first variable', 'se
8989
SELECT FORMATMESSAGE('Signed int %i, %d %i, %d, %+i, %+d, %+i, %+d', 5, -5, 50, -50, -11, -11, 11, 11);
9090
SELECT FORMATMESSAGE('Signed int with leading zero %020i', 5);
9191
SELECT FORMATMESSAGE('Signed int with leading zero 0 %020i', -55);
92+
SELECT FORMATMESSAGE('Bigint %I64d', 3000000000);
9293
SELECT FORMATMESSAGE('Unsigned int %u, %u', 50, -50);
9394
SELECT FORMATMESSAGE('Unsigned octal %o, %o', 50, -50);
9495
SELECT FORMATMESSAGE('Unsigned hexadecimal %x, %X, %X, %X, %x', 11, 11, -11, 50, -50);
@@ -97,7 +98,6 @@ SELECT FORMATMESSAGE('Unsigned hexadecimal with prefix: %#x, %#X, %#X, %X, %x',
9798
SELECT FORMATMESSAGE('Hello %s!', 'TEST');
9899
SELECT FORMATMESSAGE('Hello %20s!', 'TEST');
99100
SELECT FORMATMESSAGE('Hello %-20s!', 'TEST');
100-
SELECT FORMATMESSAGE('Hello %20s!', 'TEST');
101101
```
102102

103103
## See Also

0 commit comments

Comments
 (0)