Viewing 15 posts - 4,876 through 4,890 (of 5,103 total)
I haven't any mention to Access ADP which by the way are supposed to support SQL Server in the Back end NATIVELY!
Just my 2 cents
December 23, 2003 at 8:47 am
You may not need to know if the year is leap or not:
You can always do the Following
1. Find next month number
2. create the First Day of that next month
3....
December 23, 2003 at 8:25 am
I Believe I have to join Frank Kalis club of new words persnickety
* About the Normalization Aspect of the problem I concur with it...
December 23, 2003 at 8:17 am
quote:
A minor refinement of noeld's excellent second suggestion:SELECT
q1a, q1b, q1c, q1d
, q2a, q2b, q2c, q2d
FROM mytable
WHERE
CASE
WHEN ( q1a +...
December 23, 2003 at 7:13 am
That's a very good point. You should add constraints AFTER the table definion so that those can be named by yourself!
if you plan to rename the constraint you will have...
December 22, 2003 at 7:49 pm
Disregard my previous answer, (I am tired )
Along as you don't have nulls you can:
SELECT * FROM MYTable
Where
( (q1a/3) + (q1b/3 )...
December 22, 2003 at 5:15 pm
SELECT COLUMNPROPERTY( OBJECT_ID('TblName'),'Column_Name','IsIdentity')
HTH
December 22, 2003 at 4:19 pm
I am little tired but this may get you started. Considering You Have NO NULL NEITHER 0 in the q's you can:
SELECT * FROM MYTable
Where
( q1a*q1b*q1c*q1d > 2)>1
OR
( q2a*q2b*q2c*q2d...
December 22, 2003 at 4:16 pm
if You are using OLEDB Provider for ODBC Drivers to connect to the remote DB I believe you are out of luck on that one. It is very dependent on...
December 22, 2003 at 3:39 pm
For a simple query you could also use bcp
December 22, 2003 at 3:15 pm
This Search is something really good if you can somehow make it work. I believe you can do it
Go for it!!
December 22, 2003 at 2:53 pm
If You don't have other constraints on the column like a default, etc
then
ALTER TABLE dbo.STATES
ALTER COLUMN CountryID YOUR_TYPE NOT NULL
if you have other constraints,
1....
December 22, 2003 at 2:26 pm
Your Answer is Today's QOD
ALTER TABLE MyTable DROP CONSTRAINT MyConstraint
GO
ALTER TABLE Mytable
ALTER COLUMN Mycolumn varchar(100)
GO
ALTER TABLE MyTable ADD CONSTRAINT MyContraint DEFAULT 'New' FOR MyColumn
GO
...
December 22, 2003 at 2:20 pm
I don't Use Access this Fashion. I prefer Adp Files but what I believe is Happening is that you have an EXECUTE Statement in the definition and you...
December 22, 2003 at 1:17 pm
Viewing 15 posts - 4,876 through 4,890 (of 5,103 total)