Viewing 15 posts - 38,491 through 38,505 (of 39,720 total)
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
Andy is right. This is supplied through the ADO connection and there is no validation or verification. I can easily send a query from my workstation as host_name() "AWarren" if...
January 24, 2002 at 9:38 am
Agree with Brian. There is no way in SQL to track the access, other than profiler. You could use a sniffer, but profiler essentially does that. you could also implement...
January 24, 2002 at 9:37 am
Any changes to DTS packages that might attach files? Perhaps some file attachment is causing the failure. There is an error in the KB mentioning sending open files.
Steve Jones
January 23, 2002 at 3:19 pm
You can restore with move option. This allows you to move the log file.
Or buy a bigger disk.
Steve Jones
January 23, 2002 at 3:17 pm
January 23, 2002 at 3:16 pm
Viewing 15 posts - 38,491 through 38,505 (of 39,720 total)