Viewing 15 posts - 2,986 through 3,000 (of 3,396 total)
I almost feel cheeky answering this - only because you are so close.
You can set the Visibility of a chart/tablix/control by setting the Visibility Property of the chart/tablix in question:
Choose...
March 24, 2014 at 3:27 pm
Sounds like you need 3 tables:
Company (CompanyID INT IDENTITY(1,1) PRIMARY KEY...)
EconActivity(EconActivityID INT IDENTITY(100000,1) PRIMARY KEY...)
CREATE TABLE CompanyActivity(
CompanyID INT,
...
March 24, 2014 at 12:32 pm
Google is your friend.
March 23, 2014 at 12:01 pm
instead of starting there, why not find out what the exam covers and then do it the hard way: PRACTICE. Try to incorporate as many features of SQL Server...
March 22, 2014 at 7:20 pm
How do you get from one dataset to the other? What transformations are you doing?
Either my psychic powers are failing or you have left out a significant part of...
March 20, 2014 at 11:32 pm
Several options:
- add either a DISTINCT to your query, so that it returns one row for each unique set of values
- add a group to your report and put...
March 20, 2014 at 1:41 pm
Change the format of the textbox from c2 (currency, two decimal places) to n2 (number, two decimal places)
March 20, 2014 at 1:13 pm
Given that what you're trying to do is conceptually very simple, you could do this really easily if you created a table in TempDB, indexed it and added your value...
March 20, 2014 at 12:36 pm
Given that what you're trying to do is conceptually very simple, you could do this really easily if you created a table in TempDB, indexed it and added your value...
March 20, 2014 at 12:23 pm
Please give an example of what "redundant" means to you based on the data you provided. Apologies, but "doesn't work" doesn't mean very much. In what context? ...
March 20, 2014 at 11:17 am
If you had the wizard configure SSRS for you, you're all set. Are you using thee installation to learn or to work? If it's for work, they may...
March 19, 2014 at 9:12 am
Nor with certifications. You just have to get experience building databases and dealing with problems that come up.
March 19, 2014 at 9:09 am
Since nobody else has ventured an answer, I guess I'll try it...
Importing the HTML text shouldn't be a big deal, because it's just ASCII text. If you declare...
March 19, 2014 at 4:12 am
Cant read it - maybe because I only have Excel 2010. Another reason to post table definitions and inserts for sample data.
If you really need help, read this article...
March 19, 2014 at 3:12 am
Viewing 15 posts - 2,986 through 3,000 (of 3,396 total)