Forum Replies Created

Viewing 15 posts - 9,526 through 9,540 (of 18,923 total)

  • RE: SQL 2000 Developer Edition

    You can still download the full evaluation version on microsoft.com.

     

    That could give you some more time to find and buy the real dev version.

  • RE: truncate a database(help required urgent)

    Can't be done easily if you have foreign keys all over the place.

     

    One thing you can do is script the whole database, rename the actual DB, then run the script...

  • RE: Using bit flags in large tables

    sarg = searchable argument.

     

    This is a where clause that can use a index : WHERE MyDate BETWEEN '2007-07-01' AND '2007-07-02'.

     

    Non searchable argument in that exemple would be this : Where...

  • RE: Using bit flags in large tables

    Try again with the bit column, you'll most likely see a convert_implicit in the execution plan.

     

    Change to sarg like this : WHERE BitCol = CONVERT(BIT, 1)

    That'll most likely push you back...

  • RE: Identity columns and primary keys in a many to many example

    Here's the whole tree (very roughly presented) :

    --> Sql servers

    --> Databases

    --> Access data projects

    --> Top level objects (Forms, reports, macros...)

    --> FormsObjects

    --> FormsObjectsProperties

    --> FormsObjectsPropertiesEvents

    --> FormsObjectsPropertiesCodes (I was insterting the code...

  • RE: char or nchar ?

    Fixed width = CHAR

    always english = VARCHAR

     

     

    This however assumes that those variables will never change, which is sometimes hard to garantee.

  • RE: Find out whether a user logged on a specific day in the past

    Not that I know of.  AFAIK, unless you had profiler running, there's nothing you can do now... except turn auditing on!

  • RE: HELP!!!!! Dynamic SQL needs converted to set-based solution

    Agreed.  Dynamic sql was made for cases like this one.

     

    AS long as you are not using user inputs in the proc, stay with loop / dynamic sql.  The solution is...

  • RE: Recursive trigger ?

    Wasn't even aware that I was that close .

    Maybe I'll even get there before PASS 2007.

  • RE: Recursive trigger ?

    That happens... I don't ahve time to reread the whole post everytime I answer... sorry if anyone got offended by that "double" post .

  • RE: Recursive trigger ?

    truncate both tables, insert data in both systems.

     

    GO home.

  • RE: update - while loop

     

    WHILE EXISTS (SELECT * FROM tbl1 WHERE value1 = 'abc')

    BEGIN

    UPDATE table1 set value2 = '123' where value1 =...

  • RE: duplicate

    Pretty much ya...

     

    What do you want to do next?

  • RE: Looping through DB to get tables

    Check out the adox refferences in access.  That'll get you started.

     

    You can also access the system objects to find the list of tables of Access (check the options to show...

  • RE: Increase column length in SQL 2000

    Yes.

     

    This is one rare case where using EM to do the job will be faster... and error proof (developping time wise).

Viewing 15 posts - 9,526 through 9,540 (of 18,923 total)