Viewing 15 posts - 16 through 30 (of 33 total)
mister.magoo (10/29/2012)
Have you checked the port the instance is listening on ?
- even though it is the default instance, it could be on a port other than 1433.
Have...
October 30, 2012 at 11:48 am
Joie Andrew (10/29/2012)
- How many IP addresses is SQL configured to listen on?
- Are there multiple NICs on the server?
- Is NIC teaming used...
October 30, 2012 at 11:39 am
mister.magoo (10/28/2012)
can you connect using the name if you specifiy tcp/ip in the advanced connection settings?
are you logged in...
October 29, 2012 at 11:18 am
Joie Andrew (10/26/2012)
October 29, 2012 at 11:11 am
Joie Andrew (10/26/2012)
Intersting development I tryed to connect from SSMS using the FQDN and it does connect! (I thougt I tried that previously, guess I didnt) Any idea what that...
October 26, 2012 at 4:05 pm
Scott D. Jacobson (10/26/2012)
October 26, 2012 at 2:45 pm
Joie Andrew (10/26/2012)
not sure if this helps yet, but i think the issue is a WINS issue when you cannot resolve by name;
For example if you enter SERVER04 instead of...
October 26, 2012 at 2:44 pm
A side note for any newbies reading this:
I was manually performing:
SELECT * FROM ACTIVITY GROUP --Gave me total count of rows
SELECT DISTINCT * FROM ACTIVITY GROUP --Thought this was a...
October 11, 2012 at 12:45 pm
sam.dahl (10/11/2012)
Modifying the CTE requires recognising how the ROW_NUMBER/PARTITION BY works.
Your code:
WITH...
October 11, 2012 at 10:15 am
Two more questions. I am new to using a CTE, so bear with me 🙂
There are tables with 20 or more columns. Can I use a wild card like *,...
October 10, 2012 at 4:30 pm
Sean Lange (10/10/2012)
create table #Dupes
(
IdentityValue int identity not null,
UserValue varchar(20),
AnotherValue varchar(10)
)
insert #Dupes
select...
October 10, 2012 at 3:14 pm
Sean Lange (10/10/2012)
October 10, 2012 at 1:18 pm
ChrisM@Work (10/4/2012)
MERGE [DBname].[dbo].[Space] AS target
USING [DBname].[dbo].[RawData_Space] AS source
ON target.SPACE_ID = source.SPACE_ID
WHEN MATCHED THEN
...
October 4, 2012 at 9:25 am
Viewing 15 posts - 16 through 30 (of 33 total)