This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Param | |
( | |
[string] $SourceFolder = "C:\SSRS\My-Reports", | |
[string] $TargetReportServerUri = "http://localhost:8081/ReportServer", | |
[PSCredential] $Credential, | |
[switch] $CustomAuthentication, | |
[string] $ApiVersion, | |
[string] $TargetFolder = "/My-Reports/Sample-Reports", | |
[switch] $Recursive, | |
[string] $OverrideDataSourcePathForAll, #= "/My-Reports/Data Sources/ProdDS", |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
$ git remote rm origin | |
$ git remote add origin [email protected]:aplikacjainfo/proj1.git | |
$ git config master.remote origin | |
$ git config master.merge refs/heads/master |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Show hidden characters
[ | |
{ "keys": ["ctrl+alt+p"], "command": "prompt_select_workspace" } | |
] |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
USE master | |
GO | |
IF (SELECT OBJECTPROPERTY(OBJECT_ID('sp_lock3'),'IsProcedure')) = 1 | |
DROP PROC dbo.sp_lock3 | |
GO | |
CREATE PROC dbo.sp_lock3 ( | |
@spid1 INT = NULL /* Check only this spid; if this is NULL then all spids will be checked */ | |
, @spid2 INT = NULL /* and this spid; if this is not null, @spid1 must be not null as well */ | |
) | |
AS |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
-- Start of Script - Find_Table_Reference_Levels.sql | |
/* | |
Find Table Reference Levels | |
This script finds table references and ranks them by level in order | |
to be able to load tables with FK references in the correct order. | |
Tables can then be loaded one level at a time from lower to higher. | |
This script also shows all the relationships for each table | |
by tables it references and by tables that reference it. |