Forum Replies Created

Viewing 15 posts - 8,656 through 8,670 (of 26,490 total)

  • RE: CPU considerations for multiple instances

    You should be able to assign the cores to specific instances by setting the processor affinity. Look at the properties of the instances.

  • RE: unexplained deadlock

    Jeff Moden (3/3/2013)


    Lynn Pettis (3/3/2013)


    Curious if the following would work in this situation with proper indexing of the target table.

    WITH TableA_CTE AS(

    SELECT TOP (@TOP_HANDLED_ROWS)

    TableAID,

    ...

  • RE: Select full month number (with 0)

    Jeff Moden (3/3/2013)


    Lynn Pettis (3/3/2013)


    This method requires that the developer understand the date format code and that silent truncation is taking place. Like I said, how many times have...

  • RE: Select full month number (with 0)

    This method requires that the developer understand the date format code and that silent truncation is taking place. Like I said, how many times have we seen people complain...

  • RE: Hierarchy example - Ken Henderson's book - not working

    polkadot (3/3/2013)


    Well, if that's all it is, then great. I tend to overblame myself. I was sure it was me.

    Well, Joe Celko forewarded the book. I would have...

  • RE: unexplained deadlock

    Curious if the following would work in this situation with proper indexing of the target table.

    WITH TableA_CTE AS(

    SELECT TOP (@TOP_HANDLED_ROWS)

    TableAID,

    TableAStatusTypeID,

    ...

  • RE: unexplained deadlock

    GilaMonster (3/3/2013)


    aviadavi (3/3/2013)


    I'm using NOLOCK because integrity is not that important for me and again - I want good timing and i want to avoid potential deadlock by not locking...

  • RE: send data in small size by backup is possible

    You can trying stripping the backups to multiple files and email those separately. You could also look at encrypting the zip file and using something like SkyDrive to server...

  • RE: dbmirrroring

    First answer, yes. You can only have one mirroring endpoint per instance.

    Regarding the second question, from MSDN:

    LISTENER_IP = ALL | (4-part-ip ) | ( "ip_address_v6" )

    Specifies the IP address...

  • RE: even and odd records

    You would probably get better answers if you asked this on an Oracle forum. This is a Microsoft SQL Server forum.

  • RE: ISO 8601 - The correct way to represent a date

    Steven Willis (2/27/2013)


    http://xkcd.com/1179/

     

    Yes, but '20130227' is guaranteed to convert from a string to a date in SQL Server regardless of the setting of DATEFORMAT where as '2013-02-27' can be affected...

  • RE: User tables in the system DBs. Are they affected by SPs and CUs

    I would say yes as long a MS doesn't add anything with the same name, then you may have problems.

  • RE: Problems indexing PDF documents with Foxit iFilter on SQL Server 2008

    One, is there a reason you did not provide the entire test of the error message?

    Two, just a shot in the dark, but have you checked the permissions on the...

  • RE: Any better way to get this type of data

    Looking at this but I am slightly confused as to what it is you are actually attempting to accomplish.

    Based on your description what you seem to be looking for is...

  • RE: UDF Help

    Decided to up the test to Jeff's normal 1,000,000 row test:

    (1000000 row(s) affected)

    ======================================================================

    Now, do the exact same tests adding hard-coding of the calculation

    being done with the various functions with a...

Viewing 15 posts - 8,656 through 8,670 (of 26,490 total)