Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations wOOdy-Soft on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Recent content by TLGsoft

  1. TLGsoft

    Windows 95 and SQL Server 2000

    Just install last version of MDAC TLGsoft "If it works, don't fix it"
  2. TLGsoft

    SQL connections over a VPN

    In ODBC, set your connection to TCP/IP. TLGsoft "If it works, don't fix it"
  3. TLGsoft

    Is MS SQL 2000 Enterprise Edition a requirement for replication?

    BTW, even Personal Edition have replication... TLGsoft "If it works, don't fix it"
  4. TLGsoft

    dividing decimal number by decimal number in SQL server

    You said Decimal / Decimal. See SQLBill's post. Maybe this will help you: cast(0.01 as decimal) = 0 cast(0.01 as decimal(9,1)) = 0 cast(0.01 as decimal(9,2)) = 0.01 TLGsoft "If it works, don't fix it"
  5. TLGsoft

    Setting Owner in SQL Server??

    osjohnm, tell that to sp_mergesubscriptioncleanup. Always when I try to clean up my replication, it remains a lot of system tables, stored procs and views that you can't delete because they are system owned. So, I delete them directly from sysobjects, and it works.
  6. TLGsoft

    service pack

    Run this in QA: SELECT @@version if buildno is 780 then you have SP3 5xx then you have SP2 lower then you have SP1
  7. TLGsoft

    find the table containing the trigger

    forget about sysobjects, Jymm is right. It's a Foreign Key problem and you can edit that in table properties
  8. TLGsoft

    Is (2/28/2003 - 2/01/2003) posible ?

    use DaysBetween() from DATEUTILS unit
  9. TLGsoft

    Help!EXEC () does not like dates

    do a PRINT @mystr to see what are you trying to execute
  10. TLGsoft

    find the table containing the trigger

    sysobjects table contains the reference
  11. TLGsoft

    Setting Owner in SQL Server??

    First set the &quot;Allow modifications directly ...&quot; option in SQLServer properties. update sysobjects set UID = a.IDNumber from (select UID as IDNumber from sysusers where [name]='dbo') as a where UID <> a.IDNumber
  12. TLGsoft

    Dynamic Insert procedure

    use SP_EXECUTESQL()
  13. TLGsoft

    Splitting filename string

    ExtractFileName()
  14. TLGsoft

    dividing decimal number by decimal number in SQL server

    The problem was NULL. SQL does scalling automatically. He just could say MyRealValue = 0. Even MyStringValue = 0 (not '0')
  15. TLGsoft

    dividing decimal number by decimal number in SQL server

    Syntax is: MyValue IS NULL, not MyValue <> NULL

Part and Inventory Search

Back
Top