Viewing 15 posts - 3,601 through 3,615 (of 5,394 total)
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...
December 17, 2010 at 10:18 am
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...
December 17, 2010 at 9:43 am
Have you tried OPENQUERY?
SELECT *
FROM OPENQUERY(LinkedServerName, 'SELECT * FROM SomeRemoteTable')
December 17, 2010 at 8:56 am
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.
December 17, 2010 at 7:58 am
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...
December 17, 2010 at 6:07 am
I don't think it can be done, but I would be greatly interested in others' thoughts.
December 17, 2010 at 4:19 am
Some query plans can get out of the cache when the server is under memory pressure.
It could be something to check.
December 17, 2010 at 4:04 am
Paul White NZ (12/17/2010)
Gianluca Sartori (12/17/2010)
December 17, 2010 at 3:04 am
Paul White NZ (12/17/2010)
Gianluca Sartori (12/17/2010)
December 17, 2010 at 2:56 am
Chris Morris-439714 (12/17/2010)
GSquared (12/16/2010)
December 17, 2010 at 2:35 am
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...
December 17, 2010 at 1:39 am
mister.magoo (12/16/2010)
WayneS (12/16/2010)
I've been using VMWare for years (and am happy with it), but to install a 64-bit Windows 7...
December 17, 2010 at 1:23 am
This should do the trick:
UPDATE a
SET a.passwordHash = 'ca6588e891b19510c8a6d3d8fabd17ec1d54d201db23292250a69a36f3fca452',
a.creationDate = 1271954403664,
...
December 16, 2010 at 9:48 am
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 ...
December 16, 2010 at 9:25 am
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...
December 16, 2010 at 9:23 am
Viewing 15 posts - 3,601 through 3,615 (of 5,394 total)