Viewing 15 posts - 136 through 150 (of 1,186 total)
What happens if you drop/re-link it?
September 1, 2005 at 6:06 am
You can do it. Database options for SQL 2K are for SQL 6.0 to present. Of course like Gift stated there may be gotchas.
If possible you could script the items...
August 31, 2005 at 1:46 pm
The only file you would be able to access is the MDB. The LDB basically is there to let the system know it is currently opened by someone/something.
Can you open...
August 31, 2005 at 1:42 pm
Ok here goes.
1. '' = empty string, NULL is the ABSENCE of everything and is generally NOT a good idea to use. (There are REAMS of documentation on both fronts... ...
August 31, 2005 at 1:35 pm
Ok.
1. Unless you are setting multiple items with the same statement STOP using SELECT. USE SET instead. i.e SET @thisMonth = DATEPART(month, @testDate) - 1
2. Why do 2 different calls...
August 30, 2005 at 10:13 am
SQL server and using compressed data is not a good idea. Granted you can use Windows compression to manage your disk space HOWEVER, everytime the system needs to access the...
August 29, 2005 at 2:04 pm
Try researching DATEPART(quarter, DATEx) in BOL....
August 29, 2005 at 9:23 am
AFAIK up until W2K3 the O?S would not use it. So unless you are on Windows 2K3 it won't do anything but, possibly slow you down.
August 26, 2005 at 9:00 am
Have you searched this site for information? This is a frequently asked question and there are several EXCELLENT ways of doing this already posted....
August 25, 2005 at 5:33 am
Assumption: You are attempting to edit a table with EM. Does the table have a PK? If NO then this will probably not work.. Can you do this via a...
August 25, 2005 at 5:32 am
OR you could use the import/export wizard OR a DTS package with copy objects OR ....
August 25, 2005 at 5:28 am
OR...
You could figure out the MONTH difference and divide by 12 ie.
SELECT datediff(MONTH, convert(datetime, '2004-12-31', 120), convert(datetime, '2005-01-01', 120)) / 12
SELECT datediff(MONTH, convert(datetime, '2004-01-01', 120), convert(datetime, '2005-12-31', 120)) / 12
August 23, 2005 at 1:37 pm
I would research FORMAT() and you will need to CONCATENATE the field parts possibly. Something like FORMAT(YYYYMMDD, ColumnDate)
August 22, 2005 at 2:15 pm
Another item to look at (from what I can tell) is that the 1st couple of joined tables you have not defined the joins. This can lead to performance problems...
August 22, 2005 at 6:31 am
Viewing 15 posts - 136 through 150 (of 1,186 total)