Forum Replies Created

Viewing 15 posts - 1 through 15 (of 472 total)

  • Reply To: SSRS Table Display

    Agreed.   I'm apparently just doing it wrong.

     

    Attempt-GroupGroup

    The Redneck DBA

  • Reply To: SSRS Table Display

    Oops.  Here's updated data.

    I've tried grouping on everything but FeeName and Fee.  And that makes it show up just one record for the Policy, but then doesn't include the 2nd...

    The Redneck DBA

  • Reply To: SSRS Table Display

    Makes sense.  Here you go:

     

    CREATE TABLE DataTable 
    (
    DataTableID INT IDENTITY(1,1),
    QuoteNumber BIGINT,
    ProducerName VARCHAR(50),
    InsuredName VARCHAR(50),
    CompanyName VARCHAR(50),
    GAName VARCHAR(50),
    PolicyNumber VARCHAR(25),
    EffectiveDate DATETIME,
    Coverage VARCHAR(30),
    Premium MONEY,
    Tax MONEY,
    FeeName VARCHAR(25),
    Fee MONEY,
    PolicyTotal MONEY,
    BrokerFee MONEY,
    QuoteTotal MONEY
    )
    GO

    INSERT INTO DataTable...

    The Redneck DBA

  • Reply To: SSRS Table Display

    The first picture in the post represents some sample data.  Or do you mean send some SQL to create a table and insert sample data?

    The Redneck DBA

  • RE: Practical Uses for Synonyms in SQL Server

    bkubicek - Wednesday, December 5, 2018 12:20 PM

    Hi Jason,

    I am thinking about doing an editorial on synonyms.  Wondering if I could have...

    The Redneck DBA

  • RE: SSRS Report Developed in VS2015 would not work in SQL Server 2012 Report Server

    You sure you have the connection info correct for that data source?

    The Redneck DBA

  • RE: Creating Listeners in a multi instance cluster

    You'll need an IP for each subnet. You can use the same port. (In fact, I don't think it is possible to use a different port per subnet,...

    The Redneck DBA

  • RE: Execute stored procedure A and systems is running stored procedure B????

    Could there be a trigger causing this?

    Or maybe a synonym?

    The Redneck DBA

  • RE: alwayson fileshare witness

    I don't know if it is best practice or not, but we have about 25 two-node AlwaysOn clusters, and we have a separate server that hosts the file shares for...

    The Redneck DBA

  • RE: delete spamming Account please

    But considering it is a totally 100% free forum that is so well known, I think they do a pretty good job of handling/preventing SPAM.

    The Redneck DBA

  • RE: Availability Group backup location (path) question

    You're talking about where you tell it what folder to use to for the backups it uses for setting up the secondary replicas?

    I don't think that folder will...

    The Redneck DBA

  • RE: Modifying Agent job steps via T-SQL in bulk?

    I wouldn't do a direct update statement to the table.

    Using the msdb.dbo.sp_update_jobstep SP would be the way to go.

    The Redneck DBA

  • RE: Can we reduce the spam?

    What about charging a one-time small fee to be a user of SQLServerCentral.com? Something like $2? (Or whatever the minimum charge would have to be to break even...

    The Redneck DBA

  • RE: MSDTC / AlwaysOn

    It's working. I'm not sure what to think about how supported it is. There are MS articles scattered about saying it is not supported, one of which is...

    The Redneck DBA

  • RE: MSDTC / AlwaysOn

    I saw those references saying MSDTC isn't supported with AlwaysOn 2012. But apparently Microsoft still supports MSDTC itself, because I ended up opening a case with them and they...

    The Redneck DBA

Viewing 15 posts - 1 through 15 (of 472 total)