Viewing 15 posts - 2,206 through 2,220 (of 2,469 total)
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...
June 6, 2005 at 1:44 pm
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...
June 6, 2005 at 9:13 am
Time to whip 'em into shape then! Show them who's GOD! <;-)
June 6, 2005 at 6:04 am
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...
June 5, 2005 at 9:57 am
Have to agree - there are zillions of legacy apps out there and well defined datasources are few and far between....
June 5, 2005 at 9:34 am
Alternately - you can "set dateformat":
SET DATEFORMAT ydm
GO
DECLARE @datevar datetime
SET @datevar = '2005-1-1'
SELECT @datevar
GO
June 5, 2005 at 8:19 am
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...
June 5, 2005 at 7:52 am
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...
June 5, 2005 at 7:15 am
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 ?
June 5, 2005 at 7:10 am
If at all possible the datatype on that field should be changed to varchar so you don't have to rtrim each time!
June 5, 2005 at 7:05 am
You could do a differential instead of full...
June 4, 2005 at 11:03 am
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...
June 4, 2005 at 10:22 am
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...
June 4, 2005 at 9:02 am
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.
June 3, 2005 at 4:57 pm
Viewing 15 posts - 2,206 through 2,220 (of 2,469 total)