Forum Replies Created

Viewing 15 posts - 2,206 through 2,220 (of 2,469 total)

  • RE: How to store resumes and coverletters in database?

    If you don't want to preserve the formatting you can save the resume and coverletter as text fields - otherwise you're better off following Remi's advice...

    Here's a link to a...







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

  • RE: Views for users

    The "users" are always a complaining, unhappy bunch of people at the best of times...would hate to be in your shoes after you've cuffed and gagged them...

    So it's good that...







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

  • RE: Views for users

    Time to whip 'em into shape then! Show them who's GOD! <;-)







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

  • RE: The best way to handle look up tables

    Sherif - can you break up your lkup table into several ? Meaning - on the front end you have them select (eg.) continent - then display a list of...







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

  • RE: Suggestions for Datatypes

    Have to agree - there are zillions of legacy apps out there and well defined datasources are few and far between....







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

  • RE: setting default datetime

    Alternately - you can "set dateformat":

    SET DATEFORMAT ydm

    GO

    DECLARE @datevar datetime

    SET @datevar = '2005-1-1'

    SELECT @datevar

    GO







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

  • RE: Suggestions for Datatypes

    Amit - good article and "nice to have" if you're stuck with maintaining databases developed by someone else.

    I've had long and heated arguments with some of my colleagues on the...







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

  • RE: Views for users

    While you're waiting to find the best solution, hopefully these users have only "select" permission on these tables - or better yet - a database role with specific permissions that...







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

  • RE: The best way to handle look up tables

    How large is it ? Maybe you could load it into an array in your frontend and pass the selected value back to database for processing ?







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

  • RE: Blank spaces on the left from string result of a query

    If at all possible the datatype on that field should be changed to varchar so you don't have to rtrim each time!







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

  • RE: Remote backup via VPN connection

    You could do a differential instead of full...







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

  • RE: while loop cicle (i=i+1) insted of using cursor

    Ron - I was talking specifically about David's comment on "cursors" vs. "select from every row" - not his t-sql!

    Also, I've never had to personally compare performance between #table and...







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

  • RE: while loop cicle (i=i+1) insted of using cursor

    erncelen - you may want to consider David's suggestion - I tried a cursor vs. a select from every row on a small table of 78 rows and even in...







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

  • RE: Remote backup via VPN connection

    This could be one way...

    Create a shared drive on your remote servers - backup your .bak to this folder - map to it from your server and download the files.







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

  • RE: RE:

    An "orphan" post ????







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

Viewing 15 posts - 2,206 through 2,220 (of 2,469 total)