Viewing 15 posts - 826 through 840 (of 6,486 total)
From what I have seen- yes, but you don't need to.
In other words - if you install one, then the other, the executable for the first SSMS remains...
October 10, 2012 at 12:30 pm
If I may ask - why is there a hangup about making a connection to the server?
If you can dynamically build the connection string to multiple databases, you can...
October 10, 2012 at 9:32 am
Please take a look at what Jeff mentioned: assuming the data is structured as he mentioned (which would be standard for an adjacency), simply listing out the childID's from your...
October 3, 2012 at 1:00 pm
haiao2000 (10/3/2012)
Matt,
Actually, I know which is base and recursive parts, what I don't know is which part in that entire code triggers the retrival of data. Is it the...
October 3, 2012 at 12:28 pm
Also - the desktop's hardware isn't all that different from the server, so I'd expect the performance to not be that far off. Frankly the hardware raid is...
October 3, 2012 at 12:25 pm
This is the "base" part of the CTE
WITH TempCTE AS
(
SELECT ParentID, ChildID, 0 as Depth
FROM Table1
WHERE ParentID=1
UNION ALL
SELECT T1.ParentID, T1.ChildID, Depth +...
October 3, 2012 at 12:14 pm
Jeff Moden (9/27/2012)
September 28, 2012 at 11:35 am
coronaride (9/28/2012)
declare @nblah nvarchar(max)
set @nblah = convert(nvarchar(max), '')
set @nblah = cast(replicate('0', 9000) as nvarchar(max))
select len(@nblah), datalength(@nblah)
This results in:
8000, 16000
Doesn't matter what I change the...
September 28, 2012 at 10:33 am
I would say it's a limited use case. The models are much too simple to really be apple to apples. He also makes no effort to show what...
September 27, 2012 at 8:22 pm
opc.three (9/27/2012)
Matt Miller (#4) (9/27/2012)
this may fix your prefix issue:
EXEC('use CORELIBRARY_ARCHIVE;SET IDENTITY_INSERT dbo.MessengerLog ON') AT [NAS2-RPS];
That may execute but when you go to do the insert using 4-part naming...
September 27, 2012 at 3:49 pm
this may fix your prefix issue:
EXEC('use CORELIBRARY_ARCHIVE;SET IDENTITY_INSERT dbo.MessengerLog ON') AT [NAS2-RPS];
September 27, 2012 at 3:10 pm
From this article on MSDN, there were no features discontinued specifically in R2 (i.e anything more than what was on in 2008).
http://msdn.microsoft.com/en-us/library/ms144262(v=sql.105).aspx
So what worked in 2008 should still work in...
September 27, 2012 at 12:06 pm
One more comment: you might care to change this to be a "pull" rather than a push. As in - define the stored proc on the [NAS-rp2] server and...
September 27, 2012 at 11:21 am
Kristian Ask (9/27/2012)
September 27, 2012 at 10:00 am
It makes sense from an ACID point of view.
Since you're calling the stored proc as part of an INSERT statement, the consequences of the procedure being called should only be...
September 26, 2012 at 1:08 pm
Viewing 15 posts - 826 through 840 (of 6,486 total)