Viewing 15 posts - 38,221 through 38,235 (of 39,456 total)
January 24, 2002 at 5:25 pm
January 24, 2002 at 3:53 pm
Identities are not good or bad in and of themselves. they do solve problems and in my experience, they can ease loads because I get data that does not have...
January 24, 2002 at 3:52 pm
user_name will be unique IF your users do not share passwords or machines. host_name has nothing to do with it. I can hard code "awarren" in the host_name parameter for...
January 24, 2002 at 3:50 pm
You can set a FK between them, but you would need to set a unique index on both tables to ensure that it is not a 1:many.
Steve Jones
January 24, 2002 at 3:48 pm
January 24, 2002 at 12:32 pm
Good article. One thing to keep in mind is this depends on your client application. We use Cold Fusion and the multiple result sets don't always work. also, sometimes two...
January 24, 2002 at 11:35 am
This seemed to work
create table #ReceiptsPhysical
(part_no int
, location char( 2)
, recv_date datetime
)
create clustered index pn_loc_recvdate on #ReceiptsPhysical(part_no, location, recv_date desc)
insert #ReceiptsPhysical
select 1, 'A', getdate()
insert #ReceiptsPhysical
select 2, 'B', getdate()
insert...
January 24, 2002 at 10:29 am
January 24, 2002 at 10:25 am
Apologies for not debugging the code, but it's quite a bit. If the text field auditing is a real problem, I'd look at the Lumigent product advertised on this site...
January 24, 2002 at 10:06 am
You don't have any real "ordering" in the Transact table. How can you determine the "opening balance". Wihtout some date or flag, this isn't really possible. Depending on natural order...
January 24, 2002 at 10:00 am
Not sure I understand. If there is not EOL marker, how can SQL fix this?
You could use an ActiveX script to check the first character of the file for a...
January 24, 2002 at 9:53 am
January 24, 2002 at 9:49 am
In the event of an abnormal termination, there isn't any "event" necessarily.
What you could do is write a sproc to compare the results of sp_who with your table and look...
January 24, 2002 at 9:46 am
January 24, 2002 at 9:40 am
Viewing 15 posts - 38,221 through 38,235 (of 39,456 total)