Forum Replies Created

Viewing 15 posts - 316 through 330 (of 1,162 total)

  • RE: Full backup of a database is executing but percent_complete is 0 only

    It sounds like an intermittent network problem or a resource contention/availability problem, so you're probably going to have to get your sys admins involved.

    If you have Standard, BI or Enterprise...

  • RE: Yet another rows to column question (sorry)

    Knocking up some easily consumable sample data would help people to provide better answers, but what you're trying to do would require either dynamic SQL or picking an arbitrary maximum...

  • RE: Working with Management Studio Solutions

    Why not just create the solution/project in your scripts folder in the first place, then your project folder and scripts folder are one and the same?

  • RE: Reverse DNS

    Yep, that's the problem, the PTR record must point to your domain's MX record or Reverse DNS will fail. There's no other way around it that I know of...

    As far...

  • RE: Reverse DNS

    I'm pretty sure this needs to be resolved by the provider of the IP that the mail is getting sent from (e.g. your host).

    Specifically, it needs to have a...

  • RE: Index Range_scans

    It's not relevant how many rows were actually returned, it still has to access a range in the index if it's not marked as UNIQUE as it doesn't know how...

  • RE: BIT datatype and Oracle

    Lynn Pettis (8/9/2012)


    That's where you build a database agnostic DAL and your actual database layer is written to support the RDBMS of choice. To provide a system that performs...

  • RE: BIT datatype and Oracle

    EdVassie (8/9/2012)


    Does your business know how much cost and time they are adding by forcing people to write code that can run on multiple types of DBMS?

    This is...

  • RE: Delete loop - Is it OK?

    I don't have an environment to test on at the moment, but I suspect as it's all submitted as one batch, there's an outer (implicit) transaction that's for the whole...

  • RE: Difference in query cost for parameterized query---?

    The relative cost is an estimate. In this case, the cost of the parameterised query depends on the relative distribution of whichever value happens to be fed in as the...

  • RE: BIT datatype and Oracle

    Yes INTEGER is supported. The smallest mutually available data type for this would be CHAR(1) (which is 1 byte in each) and you can use Y/N or T/F or whatever...

  • RE: Index Range_scans

    Because it's not a UNIQUE index, so it's retrieving a range of values that match your criteria rather than a singleton lookup.

  • RE: ALTER SERVER ROLE syntax error

    This new syntax was only created with SQL 2012. you need to use sp_addsrvrolemember in 2008.

    Compare the two articles for 2008 R2 and 2012 and it makes sense. The syntax...

  • RE: Primary Key on the View

    Your question is a bit vague. Primary Keys and Sequences don't have much to do with one another.

    Are you talking about adding the equivalent of an IDENTITY column to a...

  • RE: SSIS to extract photos in correct jpg format

    You'd have to either:

    1) Use a script transformation task (this is just pure .Net code), then just use one of the examples of converting a bmp file to a jpg...

Viewing 15 posts - 316 through 330 (of 1,162 total)