Search for " 渶 rhq291.top ü渶 ۸ 渶 渶 ˻ λ渶 ϱ" returned 275 results.

Search all the documentation for " 渶 rhq291.top ü渶 ۸ 渶 渶 ˻ λ渶 ϱ"

  1. Command line syntax

    Specifies the database you want to populate with data. sqldatagenerator /server:Widget_Server\SQL2012 /database:WidgetTest /username:<use

    /sdg4/using-the-command-line/command-line-syntax

  2. Using keyboard shortcuts

    +Shift+P Show Suggestions Ctrl+Space Switch to/from column picker Ctrl + Left arrow / Ctrl + Right arrow Move up/down suggestions list Up

    /sp9/sql-code-completion-and-intellisense/using-keyboard-shortcuts

  3. Using keyboard shortcuts

    +Shift+P Show Suggestions Ctrl+Space Switch to/from column picker Ctrl + Left arrow / Ctrl + Right arrow Move up/down suggestions list Up

    /sp10/sql-code-completion-and-intellisense/using-keyboard-shortcuts

  4. Scripting SQL Backup Pro

    SQL Server authentication SQLBackupC.exe -I ServerInstance2 -U sa -P MyPassword -SQL "BACKUP DATABASE pubs TO DISK ='C:\Backups\pubs.sqb'

    /display/SBU8/Scripting+SQL+Backup+Pro

  5. Command line switches

    removecontrolcharacters r useunistrinstringliterals u alwaysusecolumnnames a Behavior options can be bundled (eg /b:dt) or used in long f

    /dco2/using-the-command-line/command-line-switches

  6. Command line switches

    removecontrolcharacters r useunistrinstringliterals u alwaysusecolumnnames a Behavior options can be bundled (eg /b:dt) or used in long f

    /dco4/using-the-command-line/command-line-switches

  7. Restoring the master database

    : SQLBackupC.exe -SQL "RESTORE DATABASE master FROM DISK = 'C:\Backups\master 20070101.sqb'" -I Instance2 If you are using SQL Server auth

    /display/SBU8/Restoring+the+master+database

  8. Rolling back

    pre-authored undo scripts (prefixed with U), starting with the most recent, all the way back to the undo script that corresponds to the v

    /rca3/implementing-a-roll-back-strategy/rolling-back

  9. Rolling back

    pre-authored undo scripts (prefixed with U), starting with the most recent, all the way back to the undo script that corresponds to the v

    /rca4/implementing-a-roll-back-strategy/rolling-back

  10. Example: writing a V2 migration script that affects objects not yet in the target database

    be applied. This means the migration script will always work, no matter what state the deployment environment is in. IF OBJECT_ID('[dbo].

    /soc3/migration-scripts-v2-beta/example-writing-a-v2-migration-script-that-affects-objects-not-yet-in-the-target-database

  11. Command line switches

    from the deployment script. useunistrinstringliterals u If the database character set is not Unicode, Unicode characters in scripts will

    /dco5/using-the-command-line/command-line-switches

  12. Command line switches

    from the deployment script. useunistrinstringliterals u If the database character set is not Unicode, Unicode characters in scripts will

    /dco6/command-line-switches-148079479.html

  13. Example - writing a V2 migration script that affects objects not yet in the target database

    state the deployment environment is in. IF OBJECT_ID('[dbo].[PersonData]', 'U') IS NOT NULL --check if the denormalized table exists as a

    /soc4/using-sql-source-control/working-with-migration-scripts/migration-scripts-v2-beta/example-writing-a-v2-migration-script-that-affects-objects-not-yet-in-the-target-database

  14. Using SQL Compare options in SQL Release

    sign to turn off a default option. $staging = New-DlmDatabaseConnection -ServerInstance 'staging01\sql2012' -Database 'Staging' -Username

    /sr1/using-sql-compare-options-in-sql-release

  15. Data Generation PostgreSQL worked example

    prompt: psql -U postgres Enter your password when prompted. If successful you should see something similar to the following (can vary dep

    /testdatamanager/command-line-interface-cli/data-generation/data-generation-worked-examples/data-generation-postgresql-worked-example

  16. Undo SQL Migration Prefix

    : prefixVERSIONseparatorDESCRIPTIONsuffix, which using the defaults translates to U1.1__My_description.sql Default U Usage Commandline ./f

    /fd/undo-sql-migration-prefix-224919757.html

  17. Types of control

    (for example, <i>, <b>, <p>, <ul>, <li>, <h1>, h2>, <pre>) for formatting the text in the help window. In most cases, you will want to id

    /ssm1/xml-schema-reference-for-script-files/types-of-control

  18. Deployment

    " -Username "sa" -Password "p@ssw0rd" $DB2 = New-DlmDatabaseConnection -ServerInstance "your-server\sql2014" -Database "WidgetProduction"

    /sr1/getting-started/deployment

  19. Obfuscating code with name mangling

    . For example, the type FullScreenSplash is obfuscated to U+1D11E (which is unprintable). Unicode unprintable characters and advanced rena

    /sa6/obfuscating-your-code-with-smartassembly/obfuscating-code-with-name-mangling

  20. Example: renaming a table without data loss

    IF db_id('Prod') IS NULL CREATE DATABASE Prod GO IF OBJECT_ID('Dev.[Person]', 'U') IS NULL BEGIN CREATE TABLE Dev.[dbo].[Person] (Name NC

    /soc3/migration-scripts-v2-beta/example-renaming-a-table-without-data-loss

  21. Types of control

    (for example, <i>, <b>, <p>, <ul>, <li>, <h1>, h2>, <pre>) for formatting the text in the help window. In most cases, you will want to id

    /ssm2/xml-schema-reference-for-script-files/types-of-control

  22. Sync-DlmDatabaseSchema

    "P@ssw0rd" Sync-DlmDatabaseSchema -Source $scriptsFolder -Target $test This example show how to update a test database to match a scripts

    /sr1/cmdlet-reference/sync-dlmdatabaseschema

  23. Using SQL Compare options with DLM Automation cmdlets

    \sql2012" -Database "Staging" -Username "sa" -Password "P@ssw0rd" $test = New-DlmDatabaseConnection -ServerInstance "test01\sql2012" -Data

    /dlma1/using-sql-compare-options-with-dlm-automation-cmdlets

  24. "Value cannot be null" error creating data script

    it using the following (SQL Server 2005 and up) query: SELECT NAME, object_id FROM sys.objects WHERE TYPE='U' AND OBJECT_ID IN ( SELECT o

    /sqp7/troubleshooting/error-messages/value-cannot-be-null-error-creating-data-script

  25. Using SQL Compare filters in SQL Release

    'Staging' -Username 'sa' -Password 'P@ssw0rd' $test = New-DlmDatabaseConnection -ServerInstance 'test01\sql2012' -Database 'Test' -Userna

    /sr1/using-sql-compare-filters-in-sql-release


Didn't find what you were looking for?