Forum Replies Created

Viewing 9 posts - 61 through 69 (of 69 total)

  • RE: QOD 8/7/03

    I think it is indicative of a poorly worded/minimally relevant question when only 12% of SQL Server professionals answer correctly. Unfortunately the choice that I would have selected if...

  • RE: Insert excel file in sql server database

    Are you trying to insert the file or just the data? If it is just the data, you would probably want to create a DTS package for this.

  • RE: 2 instances one server?

    To access the SQL 7.0 default instance as well as the SQL 2000 named instance you must have the SQL 2000 client tools installed on the client machine. SQL 2000...

  • RE: Using IF in a SELECT statement?

    SELECT a.account_id, a.bill_contact, a.bill_address, cc.cc_number,

    cc.cc_type, cc.cc_exp

    FROM account a

    inner join credit_card cc

    on a.account_ID = cc.account_id

    where a.bill_method = 'CC'

  • RE: Lessons from my first Project as a Project Manager

    Excellent article. One of the most concise yet useful pieces I've seen on the topic.

  • RE: Don't Use Transcender

    Steve wrote:

    <snip>...but I know people who work in IT and talk total garbage and do really well.</snip>

    I know the type. They learn all the latest buzzwords, have no compunction...

  • RE: Don't Use Transcender

    Actually your brain, how much experience you have and how much time you spend learning your craft are most important. Degrees only give you a starting point and certs...

  • RE: Don't Use Transcender

    If you'd like some decent, free simulation software go to http://www.mcsebraindumps.com and download the Trandumper simulator. After that you can use properly formatted braindumps that people use....

  • RE: Calling UDFs with Date Parameters

    UDF's cannot use non-deterministic functions. It's the rule and SQL Server will complain if you try to violate it.

Viewing 9 posts - 61 through 69 (of 69 total)