Forum Replies Created

Viewing 15 posts - 5,881 through 5,895 (of 7,429 total)

  • RE: Export in SQL 7.0

    I suggest connecting to the remote server and build the database there not thru the new function of Export wizrd, this way you have more control over what happens as...

  • RE: What is this error ??

    That is correct, what are you needing to know?

    "Don't roll your eyes at me. I will tape them in place." (Teacher on Boston Public)

  • RE: Altering Model Database

    Seems to be a common thing for people to ask, seems quite funny MS did not include this information in SQL BOL with an easy to find reference if it...

  • RE: Changing SQL Licensing

    There's not much MS likes anyway, just as long as he is complying with the correct licensing purchased thou then there is not much they can say. And yes that...

  • RE: IN clause v/s OR clause

    Small list really don't make much difference, however IN has an ability that OR does not that I have seen on occasion and look for, plus IN is means less...

  • RE: Complex Query

    Try these then, you should be able to figure out which Emp comes thru based on order:

    SELECT

    *

    FROM

    Emp oQ

    INNER JOIN

    Dept

    ON

    oQ.deptid = Dept.deptid

    WHERE

    Salary IN (SELECT TOP 2 Salary FROM Emp iQ WHERE...

  • RE: How do I change a table from Read Only?

    I find no information so there has to be something specific about this table that is causing this. Can you open EM and right click the table, select copy and...

  • RE: Looping thru recordset -- add delta

    So I can make sure I get this right the expression defined by

    (x2-x1) / (n+1)

    what does n represent? Is it the number of missing days, which I assume but want...

  • RE: Complex Query

    SELECT

    *

    FROM

    Emp oQ

    INNER JOIN

    Dept

    ON

    oQ.deptid = Dept.deptid

    WHERE

    Salary IN (SELECT TOP 2 Salary FROM Emp iQ WHERE iQ.deptid = oQ.deptid ORDER BY Salary DESC)

    ORDER BY

    deptname

    "Don't roll your eyes at me. I will tape...

  • RE: collation setting change

    This is the correct method to change the server default collation you have to rebuild the master. If you want to make it easy on yourself then you can backup...

  • RE: How do I change a table from Read Only?

    Which if any of those problems is true it should be specific about. What is the full text of the message you are getting? This will help us explain maybe...

  • RE: How to call UDF in SQL

    Sorry you cannot do this. From SQL 2000 BOL (updated)

    quote:


    Function Invocation

    Scalar-valued functions may be invoked where scalar expressions are used, including...

  • RE: Table not being dropped when proc stopped

    Sorry there is no ### def for temp tables. From SQL 2000 BOL (updated)

    quote:


    There are two types of temporary tables:

    Local...

  • RE: bcp command

    Can you post your table DDL as you can try the -F and -L bcp commands which are First and Last records bu I don't believe it will work and...

  • RE: Using stored procedures in ASP(vbscript)

    Don't see anything right off and things got busy here so I cannot test right now. But try the following change to the last of your code and see what...

Viewing 15 posts - 5,881 through 5,895 (of 7,429 total)