Forum Replies Created

Viewing 15 posts - 3,601 through 3,615 (of 5,394 total)

  • RE: Are the posted questions getting worse?

    GilaMonster (12/17/2010)


    CirquedeSQLeil (12/17/2010)


    I see an x86 and amd64 version. Too bad they don't have an intel 64 bit version.

    The x64 processor architecture is sometimes known as AMD64 because AMD...

  • RE: Are the posted questions getting worse?

    CirquedeSQLeil (12/17/2010)


    Too bad they don't have an intel 64 bit version.

    They do, indeed.

    From http://www.virtualbox.org:

    VirtualBox is a powerful x86 and AMD64/Intel64 virtualization product for enterprise as well as home use. Not...

  • RE: Extracting Data From a MySQL Linked Server

    Have you tried OPENQUERY?

    SELECT *

    FROM OPENQUERY(LinkedServerName, 'SELECT * FROM SomeRemoteTable')

  • RE: Need SQL Query to get latest CurrencyRate

    If you provide table script and sample data in a more consumable format, I'll be glad to help.

    Take a look at the article linked in my signature line.

  • RE: Are the posted questions getting worse?

    ALZDBA (12/17/2010)


    Steve Jones - SSC Editor (12/16/2010)


    Stefan Krzywicki (12/16/2010)


    I wonder if he's still doing that now that there's Intellisense. I like aliases, even one letter ones, but they have to...

  • RE: Capturing the actual SQL in script

    I don't think it can be done, but I would be greatly interested in others' thoughts.

  • RE: Plan handle is generated but query plan is not??

    Some query plans can get out of the cache when the server is under memory pressure.

    It could be something to check.

  • RE: Are the posted questions getting worse?

    Paul White NZ (12/17/2010)


    Gianluca Sartori (12/17/2010)


    Just be sure to turn off "Auto List Members" and "Auto Parameter Info" if you're working on a database with lots of objects or you...

  • RE: Are the posted questions getting worse?

    Paul White NZ (12/17/2010)


    Gianluca Sartori (12/17/2010)


    Has anyone tried SQLComplete intellisense[/url]? I'm trying it and it doesn't look bad at all. Since I work on 2005 servers it comes very handy....

  • RE: Are the posted questions getting worse?

    Chris Morris-439714 (12/17/2010)


    GSquared (12/16/2010)


    I like the Red Gate intellisense more than the SSMS default, but I have to admit, they both get in the way as often as they help,...

  • RE: Construct an EXECUTE string

    I'm glad you solved your issue. It couldn't be otherwise with Jeff helping! 😉

    However, I still suggest using command objects and parameters when setting up SQL query from the application.

    It...

  • RE: Are the posted questions getting worse?

    mister.magoo (12/16/2010)


    WayneS (12/16/2010)


    What are your preferences for VM machines - VMWare or VirtualPC?

    I've been using VMWare for years (and am happy with it), but to install a 64-bit Windows 7...

  • RE: where not in

    This should do the trick:

    UPDATE a

    SET a.passwordHash = 'ca6588e891b19510c8a6d3d8fabd17ec1d54d201db23292250a69a36f3fca452',

    a.creationDate = 1271954403664,

    ...

  • RE: Error multi-part identifier could not be bound on UPDATE Statement

    You're not updating the same table you declared in the UPDATE statement.

    Just change the table to update accordingly:

    UPDATE dbo.tmptblListPrices

    SET dbo.tmptblListPrices.curListPrice_Jan = dbo.tblBrands_ListPrices.curListPrice,

    dbo.tmptblListPrices.lngCategoryID ...

  • RE: CAN THIS BE DONE

    It can be done, just don't allow remote connections in SQL Server network configuration.

    However, I don't see any reason for this.

    Giving Terminal Server access could be much more harmful than...

Viewing 15 posts - 3,601 through 3,615 (of 5,394 total)