Viewing 15 posts - 7,246 through 7,260 (of 8,760 total)
techmaark (8/31/2014)
server pings client but client not ping to server but i can remotely connect with server
As a quick fix, add a HOST entry for the server on the client...
August 31, 2014 at 9:15 am
Quick thought, look at sys.partitions and sys.tables
😎
August 31, 2014 at 7:07 am
If I remember correctly, Itzik Ben-Gan wrote an article on paging result set, both with and without offset fetch, suggest you look at it.
😎
Edit: added link.
August 31, 2014 at 5:52 am
karthik82.vk (8/31/2014)
I have a data of 100 PostalCodes and parcels associated with it. Each postal code will be having multiple parcels. My aim is to find the count of parcels...
August 31, 2014 at 5:24 am
This is more for fun than being an attempt to solve the problem, although the code can easily be amended to produce the desired results. It uses an inline Tally...
August 31, 2014 at 4:25 am
Here is an alternative method without recursion, uses Tally table type looping instead. The code uses Chris's sample data to produce comparable output. It is simplified and limited to that...
August 31, 2014 at 12:49 am
TomThomson (8/30/2014)
Eirikur Eiriksson (8/30/2014)
sharonsql2013 (8/30/2014)
Select
AVG(Case when TotalHours < = 60 And TotalHours > 0 then TotalHours else...
August 30, 2014 at 4:00 pm
sharonsql2013 (8/30/2014)
Select
AVG(Case when TotalHours < = 60 And TotalHours > 0 then TotalHours else 0 end)AVGWithin60
AVG(Case when...
August 30, 2014 at 12:00 pm
Just in case you missed this from the previous instance of the question, modified to return blank if no HardDrink
😎
USE tempdb;
GO
SET NOCOUNT ON;
CREATE TABLE #TEMP (T_ID INT IDENTITY(1,1),UserName varchar(20),Drink varchar(20),Value...
August 30, 2014 at 10:39 am
Shadab Shah (8/29/2014)
There would be a better solution then , the one mention above by me.
If some body has it would be great to know. Just to improve on...
August 30, 2014 at 10:27 am
Can you ping the servers in both directions from each other using the server names, not the ip address (oops that sounds twisted:-))?
😎
August 30, 2014 at 10:16 am
Lynn Pettis (8/30/2014)
The active thread view reminds me of a Monty Python skit: Spam, spam, spam, spam ... :-P;-):w00t:
The Menu (translated to SSC'lect)
Post and Spam
Post,...
August 30, 2014 at 9:58 am
Greg Edwards-268690 (8/30/2014)
Jeff Moden (8/29/2014)
August 30, 2014 at 9:46 am
techmaark (8/30/2014)
pls check screenshot of msdtc setting attached
First thought and if I remember correctly, set the NetworkDtcAccessTip (Transaction Internet Protocol (TIP)) to 1. Do check on technet though as my...
August 30, 2014 at 9:37 am
polkadot (8/30/2014)
August 30, 2014 at 9:22 am
Viewing 15 posts - 7,246 through 7,260 (of 8,760 total)