Forum Replies Created

Viewing 15 posts - 1,351 through 1,365 (of 2,469 total)

  • RE: How do you spell S-Q-L?

    "Coincidentally, in my experience of interviewing I’ve often found that people that come across as not totally confident and don’t have all the answers often do better. They are just...







    **ASCII stupid question, get a stupid ANSI !!!**

  • RE: How to JOIN 3 views Into 1 View???

    farrell - the only other request i would make of salvatore is to post sample data where we have the same set of IDs in each table - copying and...







    **ASCII stupid question, get a stupid ANSI !!!**

  • RE: DB Design - Appears I have no idea.....

    Lee - this topic has been thrashed around on SSC as well - also includes joe celko's comments (that your blogger refers to).....

    follow these links...

    to id or not to...







    **ASCII stupid question, get a stupid ANSI !!!**

  • RE: DB Design - Appears I have no idea.....

    Lee - I know from personal experience the number of poseurs out there masquerading as instructors and professors who certainly could not answer most of the questions I had....

    It's luck...







    **ASCII stupid question, get a stupid ANSI !!!**

  • RE: Error - Unknown Error 800700F

    what service pack and mdac versions do you have ?!?!

    supposedly sp3 and mdac 2.8 is said to have resolved this issue! maybe just installing sp4 (if you don't have it)...







    **ASCII stupid question, get a stupid ANSI !!!**

  • RE: Send result of select to dBase4 file

    have you tried using the enterprise manager dts import/export wizard ?! that would be quick and painless!







    **ASCII stupid question, get a stupid ANSI !!!**

  • RE: Listing Stored Procedures

    i cannot test this on my machine but see if this works...

    exec sp_MSForEachDB "select * from sysobjects where xtype = 'P'

    and name not like 'dt%'

    order by name"







    **ASCII stupid question, get a stupid ANSI !!!**

  • RE: Listing Stored Procedures

    there's an undocumented sp_MSForEachDB that you should be able to use...if you search the forums you're guaranteed to find the script for it somewhere...







    **ASCII stupid question, get a stupid ANSI !!!**

  • RE: Listing Stored Procedures

    select * from sysobjects where xtype = 'P'...

    should give you all stored procedures for a given database...and unless you have user defined procs created with dt...you could extend it to:

    select...







    **ASCII stupid question, get a stupid ANSI !!!**

  • RE: iif(isempty(fieldName), 0, fieldName) not working

    what about:

    datalength(fieldName) is not null

    datalength(rtrim(fieldName)) = 0







    **ASCII stupid question, get a stupid ANSI !!!**

  • RE: what''''s wrong with my cursor!!!!

    also....not only is @in not being used at all - it is also declared as Varchar(1000) - so excessive for something that has no place in the procedure other...







    **ASCII stupid question, get a stupid ANSI !!!**

  • RE: Error Message when creating DB

    we have a saying in india which roughly translates to - "in the land of the blind, the one-eyed man is king"....







    **ASCII stupid question, get a stupid ANSI !!!**

  • RE: Error Message when creating DB

    looking for words of wisdom from the gurus...sometimes i'm online round the clock -







    **ASCII stupid question, get a stupid ANSI !!!**

  • RE: Default database to null?

    san - here's something from BOL that you can pass on to your developers...

    "After sp_defaultdb is executed, the login is connected to the new database the next time the user...







    **ASCII stupid question, get a stupid ANSI !!!**

  • RE: Error Message when creating DB

    noel - since you know all about linked servers - could you please help Bryan out if you have the time ?!

    bryan's post







    **ASCII stupid question, get a stupid ANSI !!!**

Viewing 15 posts - 1,351 through 1,365 (of 2,469 total)