Forum Replies Created

Viewing 4 posts - 1 through 4 (of 4 total)

  • RE: Money and Decimal Datatypes

    I remember my first experience with datatypes, like;

    DECLARE @1value int

    DECLARE @2value int

    SET @1value = 3

    SET @2value = 2

    SELECT @1value / @2value

  • RE: Linked server problem to SQL2K

    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...

  • RE: Linked server problem to SQL2K

    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...

  • RE: Linked server problem to SQL2K

    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...

Viewing 4 posts - 1 through 4 (of 4 total)