Giter Site home page Giter Site logo

Comments (5)

mwinkle avatar mwinkle commented on May 24, 2024

As a first step, you need to register the assemblies with the catalog. You can do this from PowerShell, Visual Studio, or the cross platform CLI.

If you'd like to see this in the portal, please file a feature request at feedback.azure.com

from usql.

nitin16 avatar nitin16 commented on May 24, 2024

This worked. Thanks.

from usql.

nitin16 avatar nitin16 commented on May 24, 2024

I did this through visual studio and worked great. Do you have any example of powershell script to do the same ?

from usql.

matt1883 avatar matt1883 commented on May 24, 2024

When you use Visual Studio to register an assembly with your catalog, Visual Studio submits a U-SQL script to perform the action.

The script has the following contents, where the large hex number is the hex-encoded contents of the assembly that you're registering.

USE DATABASE [master];
CREATE ASSEMBLY [MyAssembly] FROM 0x4D5A90000300000004000

To submit a job through Azure PowerShell or Azure CLI, see these articles:

To get the hex-encoded contents of your assembly using Azure PowerShell, you can do the following:

$bytes = Get-Content myAssembly.dll -Encoding Byte
[System.BitConverter]::ToString($bytes).Replace("-","")

If you'd rather upload your assembly to Data Lake Store or Azure Storage and reference it when registering the assembly, you can do this as well. Simply replace the binary value with an adl:// or wasb:// path to the assembly file that you'd like to register.

The details of this U-SQL script can be found here.

from usql.

ksureshhpk avatar ksureshhpk commented on May 24, 2024

But assembly creation not working with windows server 2019, its throwing exception like cannot create assembly since its system assembly. Anybody faced this issue?

from usql.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.