Viewing 15 posts - 1,036 through 1,050 (of 1,226 total)
This issue may have more than meets the eye. Depending on the exact work that you do and the money you make, the company may be able to say you...
July 21, 2013 at 5:16 pm
You can create a data driven subscription for the user. Here you can define the report parameters and the report generates based on those and emails itself to the user,...
July 21, 2013 at 4:57 pm
Right. It seems intuitive. I've found that has not always been the case with my queries.
July 12, 2013 at 12:31 pm
I hope I dont confuse you here :
Select T1.C1, T2.C2
From T1 Left join T2
on T1.C1 =. T2.C2
is equivalent to
Select T1.C1, T2.C2
From T2 Right join T1
on T1.C1 =. T2.C2
The...
July 12, 2013 at 12:23 pm
Create a date variable , assign the value of CONVERT(DATE, DateAdd(yy, - 5, GetDate()))
to the variable and use the variable instead in your query. This may be more...
July 12, 2013 at 12:18 pm
It also only fails when running from SQL agent, never fails from BIDS.
Just to be sure, is the config file with the user credentials stored in the same directory as...
July 12, 2013 at 12:08 pm
I concur with opc.three comment above. Are the package, job on different machines? What about the target server of the ole db connection ?
July 12, 2013 at 11:32 am
Have you considered using the SSIS execute sql task? You can map parameters to it. If you need to do many somewhat independent things as a batch, add them as...
July 12, 2013 at 11:07 am
Will do Gail, appreciate your help. Thanks
June 21, 2013 at 1:52 pm
A stored procedure and a view will both return you a result set. A stored procedure can accept parameters, such as start date and end date... whereas a view cannot....
June 21, 2013 at 12:44 pm
Hi Gail. I hope I don't trouble you if you could post this example you mention? I have not dived deeply into the subject of execution plans and am curious...
June 21, 2013 at 12:36 pm
How would using the sign function fit here? I don't think you can have a negative average of dropped calls.
thanks
June 21, 2013 at 12:24 pm
I would just add that if a start date is greater than an ending data, there should be no data returned. The user will get the point sooner or later,...
June 21, 2013 at 11:32 am
gmac 41947 (3/1/2013)
Hi,I use
DATEPART(month, myDate)
or
MONTH(myDate)
the resut is: 2 (if myDate is 2013.02.03). I would like return: 02
Do you have any solution for this?
Thans!
try this
declare @MyDate datetime
set @mydate= '20130301'
select replicate...
June 12, 2013 at 11:40 am
I installed this and works fine so far. No special tweaking needed. It looks like a fine tool. Thanks for the link Anthony.
Cheers
June 7, 2013 at 5:04 pm
Viewing 15 posts - 1,036 through 1,050 (of 1,226 total)