Forum Replies Created

Viewing 15 posts - 1,291 through 1,305 (of 1,419 total)

  • Reply To: Polybase on windows auth

    You're connecting Sql Server to Sql Server?  Why not use a linked server?

    Aus dem Paradies, das Cantor uns geschaffen, soll uns niemand vertreiben können

  • Reply To: Are the posted questions getting worse?

    With .NET Core there's finally a way for Sql programmers to get out from under the yoke of C#'s type conversions.

    Aus dem Paradies, das Cantor uns geschaffen, soll uns niemand vertreiben können

  • Reply To: Adding Sum to Variables

    You have 2 types of GL Accounts: 5 series, and 6 series.  For each type you have a matrix which defines the offset positions of data columns which include: location,...

    Aus dem Paradies, das Cantor uns geschaffen, soll uns niemand vertreiben können

  • Reply To: Record counts from the table

    Jeff Moden wrote:

    I couldn't assume such a thing for possible frequency.  We work with documents and we go through 50,000 documents per day.  The table size never changes because incoming is...

    Aus dem Paradies, das Cantor uns geschaffen, soll uns niemand vertreiben können

  • Reply To: Record counts from the table

    Jeff Moden wrote:

    How often do you add documents/nodes to this hierarchy?

    According to the OP there are approximately 25k rows in the table.  If this represents 5 years of activity, then...

    Aus dem Paradies, das Cantor uns geschaffen, soll uns niemand vertreiben können

  • Reply To: Custom OpenID Connect Authentication Provider for PowerBI Reporting Services

    At one point I looked into this because we got called into one of those "we want to slap a UI on our database" jobs.  Thankfully it didn't go anywhere. ...

    Aus dem Paradies, das Cantor uns geschaffen, soll uns niemand vertreiben können

  • Reply To: How to update a record by checking a value in another record in same table

    The alternate solutions don't factor in all of the constraints.  Also, both assume the apparent ordinality of dates/ranges will be valid while the OP has offered no assurances that's the...

    Aus dem Paradies, das Cantor uns geschaffen, soll uns niemand vertreiben können

  • Reply To: How to load/import a pdf file into azure dB table as base64 column

    By 'base64' column you must mean varbinary(max)?  I've never done it with a pdf file before but if it is possible in t-Sql then OPENROWSET would be my guess as...

    Aus dem Paradies, das Cantor uns geschaffen, soll uns niemand vertreiben können

  • Reply To: How to update a record by checking a value in another record in same table

    I can't test it (don't have the table) and all of your column names are reserved words so here's a swag at it:

    with range_cte(ID) as (
    select
    ...

    Aus dem Paradies, das Cantor uns geschaffen, soll uns niemand vertreiben können

  • Reply To: Alternate to temporary table in azure sql

    Why not just create a primary key in table A?

    Aus dem Paradies, das Cantor uns geschaffen, soll uns niemand vertreiben können

  • Reply To: Remove the middle of a string between wildcards

    If 'jsonpayload' is valid JSON it could be updated in place.  Using Sql 2016+ something like this (copy, paste, run) could work:

    /* create a test table with...

    Aus dem Paradies, das Cantor uns geschaffen, soll uns niemand vertreiben können

  • Reply To: how to rollback transaction explicitly

    Is there a business definition that defines an "error" or is the error table only supposed to contain errors generated by sql?  Please post the definition of the student table...

    Aus dem Paradies, das Cantor uns geschaffen, soll uns niemand vertreiben können

  • Reply To: Creating Function to use C# Class Library Method

    chris_barnhart wrote:

    I wasn't taking into consideration the Convert.To/FromBase64 calls that are used with the decryption method, so I wasnt converting to or from Base64 when i was performing the substring,...

    Aus dem Paradies, das Cantor uns geschaffen, soll uns niemand vertreiben können

  • Reply To: Creating Function to use C# Class Library Method

    chris_barnhart wrote:

    ..., then store the decrypted value(s) into a MySQL database.  My task is now to get said Data onto our Reporting SQL Server and store as decrypted.

    The MySQL is...

    Aus dem Paradies, das Cantor uns geschaffen, soll uns niemand vertreiben können

  • Reply To: transactions(Try, commit and rollback)

    Could you provide the definitions for the tables that you reference?  Is there an integer identity primary key on id in the student table?

    Aus dem Paradies, das Cantor uns geschaffen, soll uns niemand vertreiben können

Viewing 15 posts - 1,291 through 1,305 (of 1,419 total)