Viewing 15 posts - 10,711 through 10,725 (of 18,923 total)
Lol, Can I send him my resume.
I think you should have charged 300$ plus overtime
.
Message me if you find another one like this...
December 5, 2006 at 10:45 am
Ya this one was far from simple.
Please post back if you have any questions :
--BASE TABLE
DECLARE @Jokes TABLE (UserID INT, CatID INT, JokeID INT)
December 5, 2006 at 10:36 am
Thanx for the comments... I also work for a great small compagny. I love the fact that I have plenty of time to hand out here and not hear a...
December 5, 2006 at 10:26 am
Lol, there are so many problems with this design that I wouldn't know where to start... but that's another question for another day !
December 5, 2006 at 10:20 am
Good point. My Versions was assuming you needed all employees at the same time.
December 5, 2006 at 9:36 am
I thaught about this but it's not accepted.
ALTER TABLE tableName
ADD Whatever INT CONSTRAINT D_CName DEFAULT (dbo.fn_name(ColName))
How about adding the column, then running the update statement right after?
December 5, 2006 at 9:25 am
Select * from dbo.Employees E1 WHERE not EXISTS (SELECT * FROM dbo.Employees E2 WHERE E2.HireDate > E1.HireDate AND E1.LName = E2.LName AND E1.FName =E2.Fname.... /* keep going untill you have...
December 5, 2006 at 9:21 am
Select Part_no, MAX(Description) AS Description, SUM(Qty) AS Total FROM dbo.InvMgmt GROUP BY Part_no
This assumes that descriptions is not a very important field in that report, cause you can never be...
December 5, 2006 at 9:15 am
On second thaught, you'd be better off gettting the product info from the products table so that you get consistent results.
December 5, 2006 at 9:15 am
You can always have 2 unbound text field. Then on the after_update event (I'm from an Access Background
), validate that you have...
December 5, 2006 at 9:07 am
OK, glad to know I'm not going crazy
.
No if only those voices could shut up
.
December 5, 2006 at 9:05 am
Like me... only 2.? years experiences and never had troubles like this one
.
December 5, 2006 at 8:53 am
Smalldatetime has a precision to the minute (can't store seconds).
Datetime has precision up to 1/333 th of second (3ms).
I think smalldatetime is the best choice in this case. The users...
December 5, 2006 at 8:50 am
Viewing 15 posts - 10,711 through 10,725 (of 18,923 total)