This file contains 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
SELECT * | |
FROM | |
( | |
SELECT | |
STUFF(( | |
SELECT '' + comp.entity_data AS [text()] | |
FROM ( | |
SELECT | |
DISTINCT | |
number |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains 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
CREATE OR ALTER procedure #data_sampler | |
( | |
@schema_name NVARCHAR(128) = 'dbo', | |
@object_name NVARCHAR(128) | |
) | |
AS | |
BEGIN | |
SET NOCOUNT ON; | |
DECLARE |
This file contains 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
declare @eva table -- entity value attribute | |
( | |
id int identity, -- we could use date here either | |
type nvarchar(100), | |
value nvarchar(100), | |
student_identifier int | |
) | |
insert @eva (type, value, student_identifier) | |
select 'studentid', '1', 3 |
This file contains 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
# write what we want, then use it in a loop | |
function Update-Spaces { | |
param ($path) | |
$contents = Get-Content $path | |
$contents -replace "\s+",", " | Set-Content $path -Force | |
} | |
# now say we have multiple files, we need to loop and rewrite | |
# for each file in the folder that the script provides, filtering files that contain the filter |
This file contains 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
Windows Registry Editor Version 5.00 | |
[HKEY_CURRENT_USER\SOFTWARE\Microsoft\Windows\CurrentVersion\Feeds] | |
"EdgeMUID"="3F61B1E2FEFB605D2878BB1DFFEC6166" | |
"IsAnaheimEdgeInstalled"=dword:00000001 | |
"osLocale"="en-US" | |
"IsFeedsAvailable"=dword:00000000 | |
"ShellFeedsTaskbarViewMode"=dword:00000002 | |
"HeadlinesOnboardingComplete"=dword:00000001 |
OlderNewer