Viewing 9 posts - 61 through 69 (of 69 total)
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...
August 8, 2003 at 3:39 pm
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.
August 4, 2003 at 12:23 pm
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...
August 4, 2003 at 12:21 pm
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'
June 19, 2003 at 9:41 am
Excellent article. One of the most concise yet useful pieces I've seen on the topic.
June 4, 2003 at 12:08 pm
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...
April 14, 2003 at 10:58 am
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...
April 10, 2003 at 6:08 pm
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....
April 8, 2003 at 5:21 pm
UDF's cannot use non-deterministic functions. It's the rule and SQL Server will complain if you try to violate it.
December 12, 2002 at 9:44 am
Viewing 9 posts - 61 through 69 (of 69 total)