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 strongm on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Search results for query: *

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

    -2147217913 char datetime conversion error URGENT HLP

    Check the local datetime values (Control Panel). 26 Feb 2003 = 26.02.2003 or 02.26.2003 (both true, but in different system locales)
  17. TLGsoft

    printing problem

    yes, of course you can write Use AssignFile(), Rewrite(), Writeln(), CloseFile() to write information into a file. Or, if you have the information into, let's say a memo, do a memo.SaveToFile or any file function of your component. to send a file to printer : WinExec('copy c:\myfile.txt...
  18. TLGsoft

    Backup Strategy for Fast Recovery

    Here's an ideea to reduce risks almost to 0: - use 2 separate servers Let's say Server1 192.168.99.1 Server2 192.168.99.2 - set up a continuous replication between them. - set connection to all users through TCP/IP for Server1 If your Server1 crashes, then you just...
  19. TLGsoft

    How do I join tables across servers?

    Yep, it won't work, but he got the ideea.
  20. TLGsoft

    printing problem

    If you are using a matrix printer, then you must want to print text. Write that text to a file, then send the file to the printer. example:&quot;C:\myfile.txt&quot; ----------------- INVOICE ----------------------------- Customer : Microsoft Address : Redmont, USA Payment method ...

Part and Inventory Search

Back
Top