Viewing 15 posts - 1,366 through 1,380 (of 2,171 total)
http://blogs.conchango.com/jamiethomson/archive/2006/08/24/4400.aspx
See last post here
http://www.sqlteam.com/forums/topic.asp?TOPIC_ID=54384
August 25, 2007 at 3:46 pm
Your code is also flawed!
What will do you when more than one record is updated at a time?
CREATE TRIGGER [dbo.CHECK_LINE_DEPT_Ins] ON [dbo].[CHECK_LINE]
FOR INSERT NOT...
August 24, 2007 at 6:35 am
If the column is Primary Key and other tables references it, no.
otherwise
ALTER TABLE Table1 DROP COLUMN
August 24, 2007 at 4:35 am
See http://www.sommarskog.se and read about "passing arrays".
August 23, 2007 at 8:59 am
Jeff was objecting to this you wrote
the recordnr has price more than a
and in this recordnr the recordline should be at least b?
What is a and
August 23, 2007 at 3:34 am
that would be
insert table1
exec mysp1
August 23, 2007 at 3:34 am
I think now is the time to provide some proper sample data and your expected output...
August 22, 2007 at 5:24 pm
Clustered index has nothing to do with uniqueness.
I suggest you read about indexes in Books Online, just to refresh your knowledge a little.
August 22, 2007 at 3:37 pm
insert table1 (col1, col, col3)
select 40000 + col1, col2 / 2.0, col3
from table1
where col4 < 33123
August 22, 2007 at 2:50 pm
Do you have a clustered index on clientname?
August 22, 2007 at 2:45 pm
Use LEFT JOIN instead of INNER JOIN.
You could try to post complete query, so we don't have to play guessing games.
August 22, 2007 at 1:34 pm
SELECT
p.KPAIDS_NO,
p.FirstName,
p.LastName,
dbo.fnYearsApart(p
August 22, 2007 at 1:11 pm
MAX(CASE WHEN CL.Category like '[^a-z]' THEN 'y' ELSE 'no' END) AS 'Category Z'
August 22, 2007 at 1:03 pm
Also read this article on how to correctly calculate the age
http://www.sqlteam.com/article/datediff-function-demystified
August 22, 2007 at 12:58 pm
Viewing 15 posts - 1,366 through 1,380 (of 2,171 total)