Forum Replies Created

Viewing 15 posts - 1,231 through 1,245 (of 5,111 total)

  • RE: List edition and version of all SQL Server machines over the Network ...

    The other problem that that is that you do need the SQL Browser service to be running. I assume, therefore, you don't at least have any documentation of the servers...

  • RE: How to round a value in a varchar column ?

    Out of interest, why are you storing decimal values in a varchar? Doing things like that are only going to come back to bite you. For example, in your data,...

  • RE: WHERE Clause exclusions, best practices.

    pietlinden - Tuesday, February 26, 2019 9:54 AM

    I'm probably going to get grief for saying this, but have you considered creating a...

  • RE: Six months data sql

    Steve Jones - SSC Editor - Tuesday, February 26, 2019 8:44 AM

    Is the data in the column stored at "2019-01"?

    You are going...

  • RE: Six months data sql

    Papil - Tuesday, February 26, 2019 8:17 AM

    It will be varchar only. 

    Sorry i missed to mention that. Thats how the...

  • RE: Six months data sql

    Papil - Tuesday, February 26, 2019 7:55 AM

    I get this error-
    Conversion failed when converting date and/or time from character string.

    As per...

  • RE: Six months data sql

    Use date variable instead and then add a couple of extra clauses to your WHERE. In very simple Pseudo-SQL terms:

    DECLARE @date varchar(100);
    SET @date='2019-02';

    DECLARE...

  • RE: Query all data using a parameter

    If you mean that you want al "all" option for @Company, I'd personally pass NULL and handle it with an OR:

    SELECT
    [SS-zzReport].order_no
    ...

  • RE: Stored proc not returning data in SSRS

    tmmutsetse - Monday, February 25, 2019 6:57 AM

    Thanks so much

    Did you fix the problem then tmmutsetse? What was the problem in the...

  • RE: Stored proc not returning data in SSRS

    The only reason the query would return a different result is if the query isn't the same, the permissions differ (meaning the user running the report can't see the data),or...

  • RE: Purging Data

    DBA_007 - Thursday, February 21, 2019 7:45 AM

    How to purge Historical data from a Database

    I've tried to help here, but we're getting...

  • RE: Window Function

    kiran 4243 - Thursday, February 21, 2019 1:18 AM

    Hello Experts,

    Any feedback for my request. Appreciate your valuable feedback.

    Best Regards,

    What was wrong with...

  • RE: Insert Performance - does sql have a max throughput per thread?

    Could it be the network, rather than the disc(s)? Considering this is a linked server, I assume that the location of the data is from a different host, so perhaps...

  • RE: Purging Data

    DBA_007 - Thursday, February 21, 2019 2:17 AM

    I want to delete old data and please let me know how to partition tables...

  • RE: Purging Data

    DBA_007 - Thursday, February 21, 2019 1:40 AM

    Hello All,
    Please let me know how to purge data in production.

    What do you mean by...

Viewing 15 posts - 1,231 through 1,245 (of 5,111 total)