Forum Replies Created

Viewing 15 posts - 256 through 270 (of 1,241 total)

  • RE: Use uniqueidentifier field in place of int

    Will this affect any foreign keys in other tables that map to your enrollment table, when essentially changing the id field datatype from a unique identifier to a int ?

    ----------------------------------------------------

  • RE: Convert Negative values -2.56 to (2.56) in excel

    Just to add in case anyone is interested, You If you really wanted to have the value come through with the parenthesis to your text file , you can convert...

    ----------------------------------------------------

  • RE: Migration from SQL 2008 to 2017

    Even once you get past this issue, can't there be another issue with the way data is created in 2008 version versus 2017? Or does some automatic conversion occur when...

    ----------------------------------------------------

  • RE: TRIM() in T-SQL

    AS I dont have version 2017, will it remove two leading or trailing commas instead of one as you showed in your example. Would it Remove two leading 'patriots' in...

    ----------------------------------------------------

  • RE: Depoly BIDS package to remote server

    Happy Easter. Don't overlook that you also get the access to push this into the package store and create a job, have the job run with an appropriate proxy account...

    ----------------------------------------------------

  • RE: Symmetric Except

    'a' is the column name here and the dashes is the separator between the column name and values returned for this confused me at first glance.

    ----------------------------------------------------

  • RE: Depoly BIDS package to remote server

    Can you remote login into the machine you want to deploy to , and run the manifest there? If you dont have the permissions to deploy the package to the...

    ----------------------------------------------------

  • RE: SQL 2008/R2 Extended Events - Row Count

    select * from sys.dm_exec_sessions

    There is a row count column in there. I think you need active connection at the time of running this, even though a process may...

    ----------------------------------------------------

  • RE: null date parameter for a stored procedure

    dmbaker - Thursday, March 15, 2018 11:59 AM

    MMartin1 - Thursday, March 15, 2018 11:35 AM

    ----------------------------------------------------

  • RE: null date parameter for a stored procedure

    sgmunson - Thursday, March 15, 2018 6:27 AM

    MMartin1 - Wednesday, March 14, 2018 10:35 PM

    ----------------------------------------------------

  • RE: null date parameter for a stored procedure

    dmbaker - Thursday, March 15, 2018 8:12 AM

    ScottPletcher - Thursday, March 15, 2018 7:59 AM

    ----------------------------------------------------

  • RE: null date parameter for a stored procedure


    select case when NOT( 1 = null ) then 1 else 0 end
    select case when ( 1 = null ) then 1 else 0 end

    ----------------------------------------------------

  • RE: What is faster? Creating calculated field within table or creating calculated fields within query?

    Jeff Moden - Tuesday, March 13, 2018 12:35 PM

    Without doing a deep read on the other responses, if a calculation is deterministic,...

    ----------------------------------------------------

  • RE: Unable to filter Data

    You are referencing columns  in your query that are not in your initial table definition. I dont know even what your business requirement is. Have a look at the link...

    ----------------------------------------------------

  • RE: What is faster? Creating calculated field within table or creating calculated fields within query?

    One thing I would add ... It seems that for now the data is only being supplied to an Excel workbook , to which then calculations are done. In the...

    ----------------------------------------------------

Viewing 15 posts - 256 through 270 (of 1,241 total)