Viewing 15 posts - 1 through 15 (of 20 total)
McSQL (1/20/2011)
Best solution is to use a trigger if it is a specific event in one table.Create an SSIS task for the Email alert, using the "SendMail Task"
Unfortunately, the condition...
January 20, 2011 at 2:40 pm
Dear All,
I solved it, and I will tell you how after finishing the whole query and give the report to my MANAGER, since he is waiting for the report
May 4, 2010 at 6:10 am
ColdCoffee (5/4/2010)
WITH CTE(ID_NUMBER ) as
(
select distinct O.ID_NUMBER ID_NUMBER from Table as O
WHERE (O.FIRST_DATE BETWEEN '20090101' AND '20091231')
)
select ID_NUMBER , count(ID_NUMBER) R_Count from CTE
GROUP...
May 4, 2010 at 3:16 am
I know this,
But I forgot to tell you that my query return values for more than one condition.
I mean: the query returns records for more than one person, and I...
May 4, 2010 at 1:28 am
Where can I see SQL BOL?
could you please tell me the way to use a dynamic query to solve my problem here???
May 4, 2009 at 6:15 am
What do you mean by this process (setting DB to simple then back it to Full again) will break the Log chain and I should take a full backup to...
February 10, 2009 at 7:00 am
sriram, :D;)
Thank you very much...you solve it.
But how can we make this automatic... I mean can we do this by maintenance plan? because some times we forget to reduce the...
February 9, 2009 at 2:59 am
Ok I've created the stored procedure, but I could not create a job that calls the stored procedure every week.
How can I call the stored procedure through the job??
November 6, 2008 at 4:38 am
It is a very good solution,
Thank you very much R. Brush
;):)
October 22, 2008 at 12:11 am
I think that the best solution is added by krayknot.
Thanks to all...
October 20, 2008 at 6:23 am
Also your soultion is not ideal because it needs a substring function for each three digits, so if you want to convert a large number like " 46905730295547" to the...
October 19, 2008 at 7:12 am
bitbucket (10/19/2008)
Assuming that the "number" is actually a CHAR or VARCHAR and NOT numeric use the SUBSTRING function for example:
No it is not a char, it is a numeric(15, 4).
October 19, 2008 at 7:01 am
Thank You very much.
I did not know that there is a CASE option in the SQL.
Thanks a lot
October 15, 2008 at 3:56 am
well, I have a trigger that reads the latest inserted data and insert them into another table. I've wrote the trigger, then it inserted all data from the first table,...
September 24, 2008 at 5:25 am
Thank you very much...Both of you correct.
Thanks again
September 24, 2008 at 5:15 am
Viewing 15 posts - 1 through 15 (of 20 total)