Forum Replies Created

Viewing 15 posts - 2,506 through 2,520 (of 5,109 total)

  • RE: FT should never run as a domain account?

    SQL-DBA-01 - Monday, November 27, 2017 12:27 PM

    Ok..now as you know my question, are you aware if there is any best...

  • RE: FT should never run as a domain account?

    I'm not really sure what you're asking here. It seems (to me) that you're implying that you've been told that the Full Text Search should only run under the local...

  • RE: SSRS and SSAS

    There's not, necessarily, a "con" to running the services on different servers apart from costing. When running them on a separate servers, then that's 2 sets of licences (and hardware...

  • RE: Current Quarter

    craig.jenkins - Monday, November 27, 2017 9:28 AM

    Great thank you Thom A.  Which part does  if '1st  day of the the new...

  • RE: Current Quarter

    craig.jenkins - Monday, November 27, 2017 9:07 AM

    complete agree arron thats why i asked if someone could briefly explain what section does...

  • RE: Current Quarter

    craig.jenkins - Monday, November 27, 2017 8:50 AM

    sorry guys, which code should i being using now? thanks Thom A or drew.allen?  thanks

    Drew's...

  • RE: Current Quarter

    drew.allen - Monday, November 27, 2017 8:10 AM

    This is one...

  • RE: Current Quarter

    DECLARE @StartDate date, @EndDate date;

    SET @StartDate = CASE WHEN DATEADD(QUARTER, DATEDIFF(QUARTER, 0, GETDATE()), 0) = CONVERT(date,GETDATE()) THEN DATEADD(QUARTER, DATEDIFF(QUARTER, 0, DATEADD(DAY, -1,GETDATE())), 0)
                                        ELSE DATEADD(QUARTER,...

  • RE: Are the posted questions getting worse?

    It actually worries me that someone out there was under the impression that converting an integer (or a string containing an integer numeric) to a decimal, reduces the value of...

  • RE: decimal places correction

    You need to CONVERT and then divide by 100. An Integer, as a decimal, doesn't change its value.

  • RE: pass table param

    MinhL7 - Monday, November 27, 2017 3:30 AM

    This is purely hypothetical to see if it's possible to pass a table to a...

  • RE: Help with code to Grouping the text in multiple lines

    You'll find it unlikely that people will open and/or use your Excel document. You need to supply your data in a consumable format; Phil, Jeff and I all have a...

  • RE: pass table param

    You'll need to create a user defined table type, then DECLARE and INSERT the values into the and then pass that to your Function.

    November 27, 2017 at 1:54 am

    #1969472

  • RE: Show only records where a NULL exists across columns...

    You're going to need to inspect each column and check if it has a value of NULL. This isn't going to be quick, but:
    SELECT *
    FROM YourTable
    WHERE Column1...

  • RE: Multiple Mid functions

    Do you have to do this with an expression? I ask, as it may be easier to return the parts in your dataset, rather than splitting them in the report....

Viewing 15 posts - 2,506 through 2,520 (of 5,109 total)