Forum Replies Created

Viewing 15 posts - 136 through 150 (of 1,186 total)

  • RE: Linking SQL view as table in Access

    What happens if you drop/re-link it?

  • RE: Can you use a 6.5 bk on a SQL 2000 directly

    You can do it.  Database options for SQL 2K are for SQL 6.0 to present.  Of course like Gift stated there may be gotchas.

    If possible you could script the items...

  • RE: Adding Access DB''''s

    The only file you would be able to access is the MDB.  The LDB basically is there to let the system know it is currently opened by someone/something.

    Can you open...

  • RE: Update a column to an EMPTY STRING not working

    Ok here goes.

    1.  '' = empty string, NULL is the ABSENCE of everything and is generally NOT a good idea to use. (There are REAMS of documentation on both fronts... ...

  • RE: Programming Fiscal & Calendar months

    Ok.

    1.  Unless you are setting multiple items with the same statement STOP using SELECT.  USE SET instead.  i.e SET @thisMonth = DATEPART(month, @testDate) - 1

    2.  Why do 2 different calls...

  • RE: Compression

    SQL server and using compressed data is not a good idea.  Granted you can use Windows compression to manage your disk space HOWEVER, everytime the system needs to access the...

  • RE: Dates to quarters

    Try researching DATEPART(quarter, DATEx) in BOL....

  • RE: When is it time to turn off HT

    AFAIK up until W2K3 the O?S would not use it.  So unless you are on Windows 2K3 it won't do anything but, possibly slow you down.

  • RE: Swaping Row to column

    Have you searched this site for information?  This is a frequently asked question and there are several EXCELLENT ways of doing this already posted....

  • RE: SQL Server 2000 Permission Problem

    Assumption:  You are attempting to edit a table with EM.  Does the table have a PK?  If NO then this will probably not work..  Can you do this via a...

  • RE: how to copy table from differet server

    OR you could use the import/export wizard OR a DTS package with copy objects OR ....

  • RE: Accurate datediff by years

    OR...

    You could figure out the MONTH difference and divide by 12 ie.

    SELECT datediff(MONTH, convert(datetime, '2004-12-31', 120), convert(datetime, '2005-01-01', 120)) / 12

    SELECT datediff(MONTH, convert(datetime, '2004-01-01', 120), convert(datetime, '2005-12-31', 120)) / 12

  • RE: change date format

    I would research FORMAT() and you will need to CONCATENATE the field parts possibly.  Something like FORMAT(YYYYMMDD, ColumnDate)

  • RE: Third party query governor??

    To perform what function?

  • RE: TimeOut Expired

    Another item to look at (from what I can tell) is that the 1st couple of joined tables you have not defined the joins.  This can lead to performance problems...

Viewing 15 posts - 136 through 150 (of 1,186 total)