Forum Replies Created

Viewing 15 posts - 1,141 through 1,155 (of 2,647 total)

  • RE: CASE STATEMENT

    If you want to keep these results as dates, try replacing 'Perpetual' with '1900-01-01' OR '9999-12-31'

  • RE: CASE STATEMENT

    You are trying to cast some values as date and others as character data in the same result column. You can't do that. I don't know what working means....

  • RE: Replication

    My feelings are this:

    1. Merge is best for keeping data "synced" between multiple database instances when connections are an issue; i.e. Sales people on tablets that do not have a...

  • RE: DATABASES

    Merge does not make sense to me, from my understanding of the requirements, because I believe merge is best used when connections are the issue; i.e. sales reps out with...

  • RE: Abnormal SQL issue

    Brandie Tarvin (4/13/2012)


    opc.three (4/12/2012)


    tt-615680 (4/12/2012)


    Brandie Tarvin (4/12/2012)


    Why does the replacement user need similar privledges? You're just shooting yourself in the foot.

    Remember, least permissions needed to do the job (figuratively and...

  • RE: New to SSRS - Percentage Growth - please help

    SSRSnewbie (4/13/2012)


    Jared,

    Thank you mate, looks like some progress. I'm really happy... thank you so much for the help.

    I've been using SQL for about 10 years, but hidden behind a...

  • RE: windows update

    Either there or Start-->Windows Update

  • RE: windows update

    1. Windows Update is disabled on our servers. When we are going to do the updates, we start up the service and just do the updates.

    2. If the server...

  • RE: windows update

    Yes. We do them once a quarter unless we deem them critical.

  • RE: Update State

    Were you asked this question or are you observing this somewhere. If you have observed it, can you please be more specific as to how and where?

  • RE: New to SSRS - Percentage Growth - please help

    So add a new column in your query:

    DECLARE @datefrom datetime

    DECLARE @dateto datetime

    SET @datefrom = '2012-01-01'

    SET @dateto = '2012-02-01'

    SELECT a.databasename, a.date, a.spaceused, b.date, b.spaceused, (b.spaceused - a.spaceused)/a.spaceused AS pct_inc_dec

    FROM table1 a

    INNER...

  • RE: New to SSRS - Percentage Growth - please help

    lloyd.meyer (4/12/2012)


    Hi,

    I'm looking to calculate the % increase of our databases within a selected date range.

    For example, the user runs the report for date ranges 01/01/2012 to 30/01/2012, and we...

  • RE: How to code to insert unique records into one table?

    Mark Fitzgerald-331224 (4/12/2012)


    You have not given details of tables A and B. Assuming that tables A and B have not got a unique constraint on the memberID (as you...

  • RE: Problem with Windows Autentication

    You added the domain user to sql server logins? If so, did you add it as windows authentication?

  • RE: How to code to insert unique records into one table?

    There must be another unique constraint on the table. Please provide DDL for the 3 tables including indexes and constraints in accordance with the directions in the article referenced...

Viewing 15 posts - 1,141 through 1,155 (of 2,647 total)