Viewing 15 posts - 1 through 15 (of 22 total)
Please close. It works now.
September 21, 2020 at 6:54 pm
Looks like it is old bug in bcp command.
https://github.com/MicrosoftDocs/sql-docs/issues/2689
February 6, 2020 at 3:31 pm
You BCP format file says that the delimiter for the end of the 1st field should start with a pipe and end with a quote. It doesn't for the...
February 6, 2020 at 2:32 pm
There are an issue with STRING_DELIMITER in PolyBase
https://feedback.azure.com/forums/307516-sql-data-warehouse/suggestions/9882219-polybase-allow-escaping-string-delimiters-within
It is under review since 2016.
June 26, 2018 at 1:13 pm
I may in the future. I never work wit BIML before.
November 11, 2016 at 12:25 pm
Let say you have to ETL several files to staging tables. You don't know how many tables. You don't know tables and files structure at design time.
Somebody else later...
November 11, 2016 at 9:49 am
Luis Cazares (11/11/2016) So, you'll be asking MS for the source code for DTExec? That's the compiled executable needed.
No.
In my script I don't have table name, columns name, columns...
November 11, 2016 at 9:42 am
Phil Parkin (11/11/2016)
Dmitriy Burtsev (11/11/2016)
For production environment we prefer script solution to compiled executable.SSIS packages are not compiled executables, they're just XML files.
I know that. One need executable to create...
November 11, 2016 at 9:36 am
For production environment we prefer script solution to compiled executable.
November 11, 2016 at 6:34 am
I have to call C# from PowerShell as a workaround.
# version 1
# usage .\LoadTest "N:\DirName\LoadTest2.csv" "SERVER01.TestDB..LoadTest" ","
Param(
[Parameter(Mandatory=$True,Position=1)]
[string]$FromFileName,
[Parameter(Mandatory=$True,Position=2)]
[string]$ToTableName,
[Parameter(Mandatory=$True,Position=3)]
[string]$terminator
)
$ErrorActionPreference="Stop"
Set-PSDebug -Strict
[bool]$b = [System.IO.File]::Exists($FromFileName)
if (-Not $b)
{
Write-Output "File not found"
exit 1
}
# get...
November 9, 2016 at 1:31 pm
Sometimes we need to pass variables to the trigger.
July 22, 2015 at 12:00 pm
I like your idea but I make a few changes to meet my environment.
CREATE VIEW dbo.v_jobs
AS
SELECT j.name AS JobName,
...
March 19, 2012 at 11:39 am
exec sp_helptext 'sp_spaceused'
It is query sys.dm_db_partition_stats
August 10, 2010 at 10:02 am
Viewing 15 posts - 1 through 15 (of 22 total)