Viewing 15 posts - 6,901 through 6,915 (of 19,564 total)
Lynn Pettis (2/7/2012)
Kassondra gave birth to a healthy baby boy yesterday in Germany. Grayson Matthew was born at...
February 7, 2012 at 2:35 pm
Nope. I have used different ports.
February 7, 2012 at 2:33 pm
This should help you start figuring it out.
SELECT a.Personname AS Buyer, b.PersonName AS Seller,a.transactionnum
FROM sometable a
INNER JOIN sometable b
ON a.transactionnum = b.transactionnum
WHERE a.personnametype = 'buyer'
AND b.personnametype = 'seller'
February 7, 2012 at 1:50 pm
I think you will be better using a static port. I have seen it work better with JDBC to use a static port when dealing with named instances.
February 7, 2012 at 1:44 pm
I think it is more related to the Central management server and it being RTM. Let us know how the patching goes.
February 7, 2012 at 1:26 pm
Are you referring to a sql agent job step?
Without building some sort of support system (tables etc) to record parameter values at the end of each step, the agent does...
February 7, 2012 at 12:12 pm
If the users cannot be interrupted by the log restores, then use transactional replication.
February 7, 2012 at 12:11 pm
Does the application require that it be xml in order to use that info? It seems like a backwards way of doing this to me. You receive the...
February 7, 2012 at 12:06 pm
Perry Whittle (2/7/2012)
sql2k8 (2/7/2012)
with the minimal impact on the current running clusterThere is no minimal impact. To change these you must delete and re create the partitions, period.
Agreed - no...
February 7, 2012 at 11:12 am
Adi Cohn-120898 (2/7/2012)
DECLARE @data table (n INT)
INSERT @data
SELECT 1 UNION ALL
SELECT 10 UNION ALL
SELECT 11 UNION ALL
SELECT 12 UNION ALL
SELECT 13 UNION ALL
SELECT...
February 7, 2012 at 11:09 am
Do you have any control on the xml that is coming to you?
We had a case where the app was creating the xml for us to consume in the database...
February 7, 2012 at 11:06 am
Try this
DECLARE @data table (n varchar(2))
INSERT @data
SELECT 1 UNION ALL
SELECT 10 UNION ALL
SELECT 11 UNION ALL
SELECT 12 UNION ALL
SELECT 13 UNION ALL
SELECT 14 UNION ALL
SELECT 15 UNION ALL
SELECT 16...
February 7, 2012 at 11:02 am
are there other servers being managed by this central server that are > SQL Server 2008 RTM? My first recommendation would be to get that server patched.
February 7, 2012 at 10:51 am
Viewing 15 posts - 6,901 through 6,915 (of 19,564 total)