Viewing 4 posts - 1 through 4 (of 4 total)
I remember my first experience with datatypes, like;
DECLARE @1value int
DECLARE @2value int
SET @1value = 3
SET @2value = 2
SELECT @1value / @2value
April 18, 2011 at 2:36 pm
Thanks for your interest.
Another funny thing: When I add linked server via script it works. eg:
EXEC sp_addlinkedserver 'SERVER2k', N'SQL Server';
GO
EXEC sp_addlinkedsrvlogin 'SERVER2k', 'false', 'sqluser', 'sqluser', 'p@ssw0rd'
GO
sp_testlinkedserver SERVER2k;
GO
no problem, but when...
March 28, 2007 at 7:40 am
Yes I have executed instcat.sql, nothing changed.
I found another interesting thing.
As I mentioned before, when I map local user account on 2005 to sql user account on 2000 it works, but...
March 27, 2007 at 3:49 pm
Thanks for your reply,
Its not a 64 bits system. I have read about "instcat.sql" but as you mentioned its for 64bits systems. One interesting thing is, when I map Local...
March 27, 2007 at 9:45 am
Viewing 4 posts - 1 through 4 (of 4 total)