Viewing 15 posts - 226 through 240 (of 1,957 total)
I personally use a custom built ssms addin that flags up databases with changes that have not been committed to source control and can perform that commit.
I just need...
June 30, 2015 at 4:15 am
OLSONEJ (6/29/2015)
ID...
June 29, 2015 at 4:04 pm
Well how about you post what you have tried and some test data (see the link in my signature), then we can help you?
June 29, 2015 at 1:47 pm
another possibility is to join to a set of 8 rows, using a row number
create table #tblBOL(PONumber int);
insert #tblBOL(PONumber) values(100001),(100002),(100004),(100006);
select coalesce(tBrn.PONumber,0) as PONumber
from (values(1),(2),(3),(4),(5),(6),(7),(8)) Tally(N)
left outer join
(
...
June 28, 2015 at 5:14 pm
Isn't that usually disabled when there is already some component installed in the shared directory?
Have you checked whether the specified folder already exists and has something in it? If it...
June 25, 2015 at 4:44 pm
Alvin Ramard (6/24/2015)
mister.magoo (6/24/2015)
All these UNION queries will be scanning the table twice, yes?Each SELECT statement will cause the data to be read from the table.
Yes, to be pedantic, but...
June 24, 2015 at 9:12 am
All these UNION queries will be scanning the table twice, yes?
June 24, 2015 at 8:56 am
Assuming you have a table GivenNames with a column Name.
select distinct CA.Name
from GivenNames GN
cross apply (
select left(GN.Name,1) as Name
union all
select GN.Name
) CA
order by CA.Name
June 23, 2015 at 4:02 pm
You can't. The standard report template in report manager provides no control over layout of parameters.
June 22, 2015 at 4:28 pm
Have you checked permissions on the folder that contains your data source?
June 17, 2015 at 7:08 am
karen.blake (6/17/2015)
It should be inheriting this from the parent folder but it's not. It's very odd as normally you...
June 17, 2015 at 6:04 am
Check whether the report is inheriting permissions from the parent, quite often people change individual permissions, which stops inheritance.
June 16, 2015 at 2:27 pm
Just put the prefix np: in front of the server name.
June 16, 2015 at 2:21 pm
Put the optional parts inside the isnull...
For example
ISNULL(N'( ' + column1 + N' )',N'')
Which will produce a value with parentheses or nothing if the value is null.
If you want to...
June 15, 2015 at 2:08 pm
Viewing 15 posts - 226 through 240 (of 1,957 total)