Viewing 15 posts - 38,086 through 38,100 (of 39,720 total)
March 5, 2002 at 3:59 pm
you might have them. Consider that portland has both a Maine and an Oregon entry. The index structure could be more compact since there could be more cities under Oregon....
March 5, 2002 at 3:43 pm
March 5, 2002 at 3:40 pm
March 5, 2002 at 3:39 pm
A few ways. If this is strict sql, I'd do
where datepart( year, mydate) = datepart( year, getdate())
and datepart( month, mydate) = datepart( month, getdate())
and datepart( day,...
March 5, 2002 at 3:38 pm
March 5, 2002 at 3:37 pm
Don't think it affects performance. Likely the parser handles this, so the query engine will not even see it.
I ALWAYS use aliases.
Steve Jones
March 5, 2002 at 12:45 pm
can you post your code? I am not sure what you are describing?
Try this:
create table MyTable
(MyPK int
, MyID int
, MyChar char(4)
)
go
create trigger MyTable_Update on MyTable for Update
as
if Update(MyID)
...
March 5, 2002 at 11:42 am
No way to force this. Another argument for NT Authentication. Otherwise you'd have to write some process as suggested above.
Steve Jones
March 5, 2002 at 11:23 am
March 4, 2002 at 4:22 pm
Can you post what you tried alogn with some more sample data. Not entirely sure what you mean. Also include the table DDL.
Steve Jones
March 4, 2002 at 4:21 pm
I understand that with the SQL login you can determine who the person is, join this to some table and allow them to "retrieve" the file. Makes sense. Personally, I'd...
March 4, 2002 at 2:38 pm
March 4, 2002 at 2:34 pm
The only thing I can think of is generate a single columns as
select firstname + char(13) + middle + char(13)...
Steve Jones
March 4, 2002 at 1:17 pm
What's "a lot" of traffic. Have done this and not seen substantial overhead.
Steve Jones
March 4, 2002 at 1:12 pm
Viewing 15 posts - 38,086 through 38,100 (of 39,720 total)