Viewing 15 posts - 181 through 195 (of 285 total)
I am working on package to pull data from google analytics source. Where I need to loop through all the sites in the account for the dates I mention.
Right...
May 27, 2016 at 10:23 am
Yes. But the execute sql task is working fine , runs good. But no idea if it is returning any data or not.
September 14, 2015 at 2:02 pm
The Data flow is not working , as the DB2 is a stored procedure with paramters.
September 14, 2015 at 1:43 pm
Inside script task , I first create a text file to the path "D:\....csv"
my code in c#
public void Main()
{
...
September 14, 2015 at 12:36 pm
Something like below.
DECLARE @ReportStartDate DATE = '07/01/2015'
DECLARE @ReportEndDate DATE = '07/01/2015'
--staging tenp table creation
IF OBJECT_ID('tempdb..#FinalOutPut') IS NOT NULL
BEGIN
DROP TABLE #FinalOutPut
END
CREATE TABLE #FinalOutPut
(
Asdfg VARCHAR(60)
,M_id VARCHAR(100)
,GP_id INT
,C_id int
,Dt_modified DATETIME
,UID VARCHAR(50)
)
IF OBJECT_ID('tempdb..#EC')...
August 19, 2015 at 8:42 am
The query has parameters and create and update statements in it and parameters , when i try to run the query in OLEDB sql command source , the parameters...
August 19, 2015 at 8:40 am
The above query pulls data from another source , where i can only read data not write. I need to run this query and pull the data and insert it...
August 18, 2015 at 12:20 pm
Here is the query format. I could not get you orginal query but this is the format of it.
DECLARE @ReportStartDate DATE = '07/01/2015'
DECLARE @ReportEndDate DATE = '07/01/2015'
--staging...
August 18, 2015 at 12:18 pm
If i schedule it to run daily through subscriptions ( ssrs), in SSRS, report will run daily but populates data only on that particular day( checking condition if today is...
February 19, 2013 at 9:58 am
I can get the last quarter date.But need to add subscription to run after 110 days after last quater.
February 19, 2013 at 9:34 am
I know , it's kind of DBA questions and they are excepting the Developer to answer it and I am a Newbie to SQL server ,and never faced such situations...
December 7, 2012 at 9:27 am
Sorry the questions is like this: Design a table, how to track phone call.
December 4, 2012 at 9:59 am
I was doing that , but I need to run only on Business working days.So I took calender table to run only on business working days.
Thanks,
Komal
November 29, 2012 at 1:48 pm
Thank you ray.IIf worked for me but switch is not working.
November 15, 2012 at 1:28 pm
Viewing 15 posts - 181 through 195 (of 285 total)