Viewing 15 posts - 3,601 through 3,615 (of 5,393 total)
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...
-- Gianluca Sartori
December 17, 2010 at 9:43 am
Have you tried OPENQUERY?
SELECT *
FROM OPENQUERY(LinkedServerName, 'SELECT * FROM SomeRemoteTable')
-- Gianluca Sartori
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.
-- Gianluca Sartori
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...
-- Gianluca Sartori
December 17, 2010 at 6:07 am
I don't think it can be done, but I would be greatly interested in others' thoughts.
-- Gianluca Sartori
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.
-- Gianluca Sartori
December 17, 2010 at 4:04 am
Paul White NZ (12/17/2010)
Gianluca Sartori (12/17/2010)
-- Gianluca Sartori
December 17, 2010 at 3:04 am
Paul White NZ (12/17/2010)
Gianluca Sartori (12/17/2010)
-- Gianluca Sartori
December 17, 2010 at 2:56 am
Chris Morris-439714 (12/17/2010)
GSquared (12/16/2010)
-- Gianluca Sartori
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...
-- Gianluca Sartori
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...
-- Gianluca Sartori
December 17, 2010 at 1:23 am
This should do the trick:
UPDATE a
SET a.passwordHash = 'ca6588e891b19510c8a6d3d8fabd17ec1d54d201db23292250a69a36f3fca452',
a.creationDate = 1271954403664,
...
-- Gianluca Sartori
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 ...
-- Gianluca Sartori
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...
-- Gianluca Sartori
December 16, 2010 at 9:23 am
Glad to see you solved your issue.
I don't have any docs about Profiler at hand. You could start it and read the help, or google it.
-- Gianluca Sartori
December 16, 2010 at 9:07 am
Viewing 15 posts - 3,601 through 3,615 (of 5,393 total)