Viewing 15 posts - 37,861 through 37,875 (of 39,498 total)
Don't think so. Someone posted a link to a util (bii.exe) in the resource kit to load images or binary fields.
Steve Jones
March 5, 2002 at 5:04 pm
In 2000, I believe this is also stored at the database and table level. You might need to rebuild the table.
In EM, if you go to the table, right click,...
March 5, 2002 at 5:01 pm
I guess DMO would work. Haven't tried it.
Could write something in VBScript to load each package and then resave it.
Steve Jones
March 5, 2002 at 4:02 pm
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
Viewing 15 posts - 37,861 through 37,875 (of 39,498 total)