Viewing 15 posts - 16 through 30 (of 32 total)
HI There.
A colleage of mine has given me this advise but nothing too elaborate:
The auto increment number is through a Trigger that when a opportunity is created it adds one...
October 16, 2017 at 1:10 am
Apologies for the delayed response on this. I have been thinking to maybe do this..
Create the trigger against the opportunity table then create a new table called quoteno and...
October 15, 2017 at 8:26 am
Yes correct..
Each entry that a user enters has a unique client ID which is assigned to each client entry in the opportunity table. Each client that is entered gets...
October 13, 2017 at 2:31 am
HI
There is an Opportunity table and Quoteno is a user defined field that is recorded in the UdF table. Quoteno is specified by a type_id - in this...
October 13, 2017 at 2:05 am
i figured it out.. sorted the issue.. Thanks though
October 13, 2016 at 4:33 am
If I create my function as below, I get the following error:
Must declare scalar variable "@EndDate"
what I mean by the following is:
I don't want to put in a specific date,...
March 1, 2016 at 12:19 pm
select statement:
select a.Owner_Id,
b.Name as KPI,
B.Record_Type,
B.Resource_Id,
C.Display_Name,
count(A.Owner_Id) as Max
from amgr_appointments A
right outer join AMGR_Resources B on A.Owner_Id = b.Resource_Id
right outer JOIN ADMN_User_Details AS C ON A.Creator_Id=C.User_Id
where b.Resource_Id in ('R25B2864CB6', 'R2691D72523', 'R25B2868972','R25B2868EE0','R39D1B39765', 'R0DF25BF278')
and...
March 1, 2016 at 11:38 am
No the right join brings all the rows however the action taken field is duplicated with the same number for each entry. It only has to apply to the entry...
February 15, 2016 at 4:50 am
@hugo, my apologies I am just trying to get to see which method will work best as I am fairly new at SQL:
1. what I need to be...
February 7, 2016 at 6:29 am
here my actual code to make things clear on what im trying to achieve here:
select
D.First_Name as FirstName,
D.Name as Surname,
D.Phone_1 as Main,
D.Phone_3 as Cell,
case when a.Type_Id = 98 then a.Description...
January 21, 2016 at 11:18 pm
Table a and table b link together using type ID and code ID.
Table a contains the description of the fields ie. Relationship and owner and their respective values within the...
January 21, 2016 at 2:00 pm
apologies for my ignorance however im new at this..
Must i not use a trigger or must i just use a different trigger?
How would i incorporate the code above into my...
August 13, 2014 at 2:26 am
IN MY CODE, something like this:
if EXISTS(SELECT AlphanumericCol FROM AMGR_User_Fields_Tbl I
WHERE I.AlphanumericCol IN(SELECT CLIENT_ID FROM AMGR_User_Fields_Tbl)
August 13, 2014 at 2:22 am
i cannot use a constraint of sorts as it changes the structure of the database.
Can you possibly give me an example
August 13, 2014 at 1:41 am
Viewing 15 posts - 16 through 30 (of 32 total)