Viewing 15 posts - 8,101 through 8,115 (of 13,882 total)
John Mitchell-245523 (9/21/2015)
Use an Execute SQL task to get the list of reports, then loop through the list and use an Execute Process task to run each script.John
John, did you...
September 21, 2015 at 7:25 am
venkatesh.jonnagadla (9/21/2015)
To Avoid this...
September 21, 2015 at 4:48 am
September 21, 2015 at 1:30 am
Here it is again in clickable form
September 21, 2015 at 12:21 am
ChunkyLover1974 (9/20/2015)
September 20, 2015 at 10:41 am
Rather than a derived column, you should consider using a data conversion transformation.
September 20, 2015 at 10:20 am
Jayanth_Kurup (9/20/2015)
Phil Parkin (9/18/2015)
Jayanth_Kurup (9/18/2015)
September 20, 2015 at 2:46 am
I have a table with some rows and columns what i want is i want to Show sum of particular column in the last row.
The last row of what? What...
September 18, 2015 at 4:07 am
Jayanth_Kurup (9/18/2015)
September 18, 2015 at 4:05 am
Chris Wooding (9/18/2015)
The project has the following;
[ModifiedBy] CHAR (8)...
September 18, 2015 at 3:42 am
GilaMonster (9/18/2015)
SELECT ufnGetAccountingEndDate()
Beat me to it.
What I would also suggest is that you always schema-qualify your DB objects:
select dbo.ufnGetAccountingEndDate();
September 18, 2015 at 2:43 am
Steve Jones - SSC Editor (9/17/2015)
Brandie Tarvin (9/17/2015)
September 17, 2015 at 11:45 am
Ok. Does your @sql begin with a use db statement? If not, please reread our original responses.
September 17, 2015 at 10:27 am
AarionSSQL (9/17/2015)
I am trying to use variables to generate the command:
USE DATABASE
GO
Code below:
DECLARE @DBName_Schema varchar(500)
SET @DBName = 'Test'
EXEC ('USE ' + @DBName )
GO
It does not seem...
September 17, 2015 at 8:22 am
BWFC (9/17/2015)
Phil Parkin (9/17/2015)
September 17, 2015 at 5:09 am
Viewing 15 posts - 8,101 through 8,115 (of 13,882 total)