Viewing 15 posts - 2,056 through 2,070 (of 2,171 total)
Thanks! I hope the code works out for you.
If you have the time and courage, I would suggest another environment for you, since your environment has a number of flaws....
June 21, 2006 at 6:22 am
There is a tool named SQLIOStress that can be downloaded from Microsoft's site.
June 21, 2006 at 4:15 am
So the tables are the files as well? You do not use .vfp or .dbf files either?
Ok, do you then have the right permissions on the server to query (read...
June 21, 2006 at 4:02 am
I think Tim meant that it is not really a T-SQL problem. It's rather a problem with OPENROWSET usage.
Select * from openrowset('VFPOLEDB.1','C:\Client Data';;,'Select * from cm')
I can see that...
June 21, 2006 at 3:32 am
Your trigger TRIGGER1 on MyTable self-triggers!
Please use UPDATE() function and exclude columns LastUpdateDate and LastUpdateUser.
Alternatively, set these columns with default values GETDATE() and SUSER_SNAME() and use trigger only when updating.
Books...
June 20, 2006 at 2:24 pm
June 20, 2006 at 10:44 am
No, it will not change the fact that you sometimes have time with '1899-12-30' (ms access standard) and sometimes time with '1900-01-01' (ms sql server standard).
The problem arises when adding...
June 20, 2006 at 8:12 am
No offense, but it is how SQL treats trailing spaces, not leading spaces.
select len(' g'),
datalength(' g'),
len('G '),
datalength('G ...
June 20, 2006 at 4:59 am
2 + logindate + loginzeit
is for that you have altered the default date for smalldatetime/datetime values from 1 jan 1900 to 30 dec, 1899. This is two days...
June 19, 2006 at 6:23 am
Here is a solution that works for your environment.
This is not an environment I recommend.
See Last Post!
June 19, 2006 at 6:11 am
How do you count a work-day when logging in 21:30 saturday and logging out 06:30 sunday, where saturday is the last day of september 2006 and sunday is first day...
June 19, 2006 at 3:31 am
If you use an "everyday" table, you will not have to worry about a massive checks for "special days" as vacation and week days.
Extend "Everyday" table with two columns. One...
June 19, 2006 at 3:02 am
Viewing 15 posts - 2,056 through 2,070 (of 2,171 total)