Viewing 15 posts - 31 through 45 (of 123 total)
The error clearly mentions that you are trying to attach a database with the same name that already exists. There is nothing wrong with SSMS doing that.
May 5, 2014 at 9:31 am
something like this??
DECLARE @Input TABLE
(
col1 INT,
col2 INT,
col3 VARCHAR(3),
col4 VARCHAR(3),
col5 VARCHAR(3)
)
INSERT INTO @Input VALUES(1, 122, 'AAA', null, null),(2, 122, null, 'BBB', null),(3, 122, null, null, 'CCC'),
(4, 156, null, 'BBB', null),...
May 5, 2014 at 8:50 am
Jack Corbett (5/2/2014)
May 2, 2014 at 12:48 pm
If you are talking about restoring from a backup or attaching a data warehouse, I would say its quite straight forward and simple... There is no such thing like installing...
May 2, 2014 at 12:42 pm
Yes using SSIS you can do this.
May 2, 2014 at 11:02 am
Are you using this query inside a stored procedure? If so there might be an issue of Parameter Sniffing.. Check in relation with that..
May 2, 2014 at 10:32 am
something like this... may be you need to modify it accordingly..
DECLARE @SomeData TABLE
(
FirstName varchar(25)
, MiddleName varchar(25)
, LastName varchar(25)
, StreetAddress varchar(25)
, Suite varchar(25)
, City varchar(25)
, [State] varchar(25)
, PostalCode varchar(10)
,...
May 1, 2014 at 12:09 pm
Have you tried the concept of drilldown in ssrs? Read this article I wrote on creating a drill down report .. http://sqlsaga.com/ssrs/how-to-create-a-drill-down-report-using-ssrs/[/url]
April 28, 2014 at 3:54 pm
can you show us some sample output...
April 28, 2014 at 2:20 pm
are you passing the value of the select statement to a result set or a Output parameter? Using a result set would be the best option to pass it to...
April 28, 2014 at 2:17 pm
see this if it helps... http://stackoverflow.com/questions/15725086/visual-studio-2012-wont-let-me-debug
April 28, 2014 at 11:03 am
Keith Tate (4/28/2014)
For BI related stuff there is the Contoso sample database: http://www.microsoft.com/en-us/download/details.aspx?id=18279
Thank you Keith for the fast reply.. 🙂
April 28, 2014 at 9:18 am
I think you should change the last two line to this
where last_run_outcome <> 1',
@body_format = HTML
April 28, 2014 at 8:22 am
You can use precedence constraints in SSIS and have an expression over it to do this.
April 24, 2014 at 8:20 am
something like this should work
= "For " & MonthName(Month(Today())) & " " & YEAR(Today())
April 23, 2014 at 12:11 pm
Viewing 15 posts - 31 through 45 (of 123 total)