Forum Replies Created

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

  • RE: Windows Server 2003

    For proper/full functionality for sqlserver 2000 you must update sqlserver sp3 to work with win2003.

    Shamshad Ali.

  • RE: Using POP3 for E-mail Integration

    I have a same situation, I am using my home pc for sending mail alerts, It is working fine without any problem, I have SQL Professional, win2k professional with Office...

  • RE: EMAIL in TRIGGER

    Two special tables are used in trigger statements: the deleted table and the inserted table. SQL Server automatically creates and manages these tables. You can use these temporary, memory-resident tables...

  • RE: Error 15023 User or role already exists

    Run the following while you are in ur recovered database.

    sp_change_users_login 'auto_fix',user

    Try this.

    Shamshad Ali.

  • RE: reading transaction logs

    Great question - Y V Can't.

    Shamshad Ali

  • RE: varchar length

    create proc shortHTMLemails

    as

    CREATE TABLE [dbo].[tblHTML] (field1 int IDENTITY (1, 1) NOT NULL ,txt varchar(8000) )

    DBCC CHECKIDENT (tblHTML, RESEED, 1)

    insert into tblHTML values('<html><head></head><body><table border=0 cellspacing=1 width=800><tr><td bgcolor=#DDDDFF><div align=center><table...

  • RE: varchar length

    I got the same problem and afterall i got this as my own solution of that problem.

    Create a temp table and put one column in it with varchar 8000,...

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