Forum Replies Created

Viewing 15 posts - 421 through 435 (of 13,469 total)

  • RE: Hashing column using SHA256

    sure the final result must be one of those data types....but you can convert your columns to the acceptable data types and you are all set.
    and anyplace they say...

  • RE: Same query different Execution plan on two different server

    files are actually zip files with a sqlplan extension.

    On Plan1_server1 you can see the estimated and actual number of rows are way off(estimated = 91.2K, actual = 1.8K,...

  • RE: Hashing column using SHA256

    variable, string OR [COLUMN NAME] of type varchar/nvarchar  is accepted for the parameter!
    so if you choose a column, or the converted value of a column that is NOT a...

  • RE: Formatting in HTML table

    For the RevenueAmt, if the datatype is MONEY, the convert function has an additional parameter and will insert your commas for you. if it si a decimal, you have to...

  • RE: Solution to audit login

    I did this once, when we identified that developers were using the application login as their  dev login to do work. I got the management buy in that this should...

  • RE: Solution to audit login

    As John Mitchell noted in the other thread,,all you can do is reasonably infer the person, based on the IP address or hostname(whihc technically can be spoofed in the connection...

  • RE: List of scheduled sql jobs

    the first table should be sysjobs, as some jobs may exist but have NEVER been executed,and thus have no history.
    also, the joins should be LEFT JOINs, since jobs could...

  • RE: Linking instances in a cluster

    Robert, are you talking about each Server in an Always On Availability Group, or a Windows Server Failover Cluster with shared storage and a cluster aware SQL instance?

    You...

  • RE: task => generate script with tool sqlCmd

    I've seen issues like this in the GUI scripting; when you use an older version of SQL Server Management Studio(lets say 2008 or 2012) and are connecting to a higher...

  • RE: Can't convert minutes to hours after 24 hours

    you could do it as a string representation like this:

    /*--results
    ElapsedString    Days    Hours    Minutes    Seconds    Milliseconds
    3:03:30:11    3    3    30    11    446
    */
    WITH MySampleData
    AS
    (
    SELECT
       [Days]    = datediff(day,0,ET-ST),
       ...

  • RE: Long running insert

    ok since you are inserting into a table, you do not need the ORDER BY in the end.

    You could fiddle with changing it to use EXISTS instead of...

  • RE: How to add comments to your database

    Scott Coleman - Tuesday, July 11, 2017 11:17 AM

    RE: VB vs Java (why not PowerShell?) for managing extended properties.  Why use either?
    You...

  • RE: Moving SQL Server System databases to new drives

    i would think about slicing the new SAN into three drives; two big ones for the SQL stuff for db and logs, and a new,smaller one for the disk-based packages.

  • RE: BULK Insert + create temperory table at the time of insert

    I've done this with a script task in an SSIS package. it is a good size snippet of code, with lots of caveats.... the end result is exactly what everyone...

  • RE: Replicate process from excel to sql

    Yes, you'll end up needing  bunch of case statements, one for each column.
    This could also be done int he presentation layer, so for example SSRS could use an expression...

Viewing 15 posts - 421 through 435 (of 13,469 total)