Viewing 15 posts - 5,461 through 5,475 (of 6,678 total)
BTW - why are you even using telnet? I would not even enable telnet on any of my SQL Servers in the first place.
April 1, 2009 at 10:22 am
If your cluster is setup correctly, you should be able to RDP or Telnet to the VirtualIP address which will direct you to the node that is currently hosting that...
April 1, 2009 at 10:20 am
Nope - the linked server will only use the x64 ODBC drivers. What system are you trying to connect to?
April 1, 2009 at 10:17 am
You are welcome - and thanks for the feedback.
April 1, 2009 at 10:04 am
You are welcome - and thanks for the feedback. It is appreciated.
March 30, 2009 at 5:33 pm
These types of issues are not for client systems accessing SQL Server. Your clients will use whichever ODBC client software they need to on their systems, either 32bit or...
March 30, 2009 at 3:03 pm
Be aware that UNION also has to remove duplicates, which is going to take longer to process. If you can guarantee that each query is unique - you can...
March 30, 2009 at 2:56 pm
Maxer (3/30/2009)
HOWEVER, I was running it against an SQL Server 2000 data source.
That is VERY interesting to know, thank you for that!
I...
March 30, 2009 at 2:47 pm
Florian Reischl (3/30/2009)
Just a little typo in step 2):SELECT TOP (@Num) * FROM dbo.YourTable;
or
SELECT TOP (@Num) col1, col2, colN FROM dbo.YourTable;
Greets
Flo
Thanks Flo - that's what I get for typing this...
March 30, 2009 at 2:39 pm
Jerry Hung (3/30/2009)
Yes, you need to upgrade to SSMS 2008 to connect to SQL 2008SQL 2005 SSMS cannot connect to SQL 2008
Not quite true - you can connect to SQL...
March 30, 2009 at 2:35 pm
There is no way to upgrade an existing instance to a clustered instance. You have to build the cluster and then install a new instance into the cluster.
The only...
March 30, 2009 at 2:30 pm
BTW - when they say SQL Server can only use 4 CPU's - they are talking about slots. A single quad core processor is one CPU's as far as...
March 30, 2009 at 2:20 pm
What you can do in SSRS is:
1) Create a parameter for your report - let's call it TopNum
2) In your Dataset, do the following:
DECLARE @Num int;
SET @Num = @TopNum;
SELECT TOP...
March 30, 2009 at 2:08 pm
Grant Fritchey (3/30/2009)
March 30, 2009 at 1:38 pm
MERGE was introduced in SQL Server 2008 - are you on that version?
March 29, 2009 at 4:01 pm
Viewing 15 posts - 5,461 through 5,475 (of 6,678 total)