Viewing 15 posts - 3,706 through 3,720 (of 5,103 total)
I should give credit to that developer because he was so much into customization that forced me to figure out how to get to my "normal" look-and-feel
May 19, 2005 at 12:52 pm
Can you fill in the blanks ?
UserID TransactionType SaleAmount PaymentAmount PaymentType
209541 Executive 3 Year 6200
209541 3000 Visa
209541 3200 Amex
-------|----------------|-----------|--------------|------------|
UserID |TransactionType |SaleAmount |PaymentAmount |PaymentType |
-------|----------------|-----------|--------------|------------|
209541 | | | | ...
May 19, 2005 at 12:44 pm
Tools-->Options-->Editor(tab) Check Tabbed Mode ![]()
May 19, 2005 at 12:36 pm
CREATE PROCEDURE SP_CT_ITEM
AS
DECLARE @CONTADOR NUMERIC(8)
SET NOCOUNT ON
-- no need for explicit Transaction because of atomicity in single statements
UPDATE PARAMETRO SET @CONTADOR = NM1_PARAMETRO = NM1_PARAMETRO +...
May 19, 2005 at 12:35 pm
Actually I knew this one because in one occassion I had to use the computer of a developer at one ofmy clients and the guy had QA sooooo customized that...
May 19, 2005 at 12:24 pm
In QA go to Tools->Options->Connections(Tab) and UNCHECK Use regional settings....
hth
May 19, 2005 at 12:06 pm
Just create an Alert for SQL Performance Condition like:
IF (EXISTS (SELECT name FROM msdb.dbo.sysalerts WHERE name = N'YourDatabase Log > 70%'))
---- Delete the alert with the same name.
EXECUTE msdb.dbo.sp_delete_alert...
May 17, 2005 at 12:10 pm
May be I don't know much about Delphi but I think you will need "TGUID" type for the value
May 17, 2005 at 10:01 am
create procedure dbo.yourprocname @param uniqueidentifier output
as
begin
...
select @param = columnname from table where x=z
end
and from Delphi use the Returned value of the output parameter
hth
May 17, 2005 at 9:01 am
Yes there is. Open the Relationships Window and right click on the foreign key LINE and select "Cascade Delete Related Records "
hth
May 17, 2005 at 8:47 am
Right padding ? Something is not right on your app. I can accept that you would have said Left padding but definitely not Right.
Can you double check that?
May 16, 2005 at 8:39 am
Viewing 15 posts - 3,706 through 3,720 (of 5,103 total)