Pages

Thursday, November 1, 2012

SSRS - Default to All without using Multi-Values

I was helping a client and stumbled upon this.

http://dataqueen.unlimitedviz.com/2011/06/how-to-default-to-all-in-an-ssrs-multi-select-parameter/

Wednesday, October 31, 2012

SSRS the operation you are attempting requires a secure connection (https)


I stumbled upon an issue where SSRS was not HTTPS but could kept getting the following error:
 The operation you are attempting requires a secure connection (https)
Here is what I did to fix the issue.
Update the RSReportServer.config file using the following steps:
  1. In Windows Explorer, locate the ReportServer directory. The following path is the default path of this directory: C:\Program Files\Microsoft SQL Server\MSRS10.MSSQLSERVER\Reporting Services\ReportServer
  2. Right-click RSReportServer.config, click Open With, click Notepad and then click OK.
  3. Locate the following Add Key entry: <Add Key="SecureConnectionLevel" Value="2"/>
  4. Change the Value setting from 2 to 0.

Tuesday, October 23, 2012

SSMS 2012 Report Security Bug

Looks like in SQL Server 2012 there is an issue with some base reports that come with SSMS. Here is a link that provided me guidance.

http://dbfriend.blogspot.com/2012/10/ssms-report-security-bug.html?goback=%2Egde_137774_member_177201860

Thursday, August 16, 2012

How to disable SQL 2005/2008/2008 R2 Splash Screen for SQL Server Management Studio.

Are you tired of waiting for the Splash Screen to go away when launching SQL Server Management Studio. Well here is how you can get rid of it.

Go to the Properties of the SQL Server Management Studio Shortcut.


add a space to the end of the "Target:" and type -nosplash


Congratulations you have now disabled the Splash Screen.

Thursday, June 21, 2012

SSRS - UAC Error on "First" login.

User ‘Domain\User’ does not have required permissions. Verify that sufficient permissions have been granted and Windows User Account Control (UAC) restrictions have been addressed.
After you login the first time to SSRS you probably get the error message above. Well to fix this you can do the following.

1) Right click on Internet Explorer and run in Adminstrator mode
2) Type in the address localhost/reports
3) You will now be able to add the user to Site Settings and Folder Options.

Here is a reference link with screen captures.


http://www.soheib.com/technical-knowledge/sql-server-2012-reporting-services-uac-user-access-control/

Wednesday, June 13, 2012

Fifa 2012 - Playing online w/Guests vs. Online Friend

The person with the Guests - Start a head to head match.

The Online person - Wait on the Xbox Live screen with the friend. When the friend creates the game "Join Session in progress" as fast as possible.

Wednesday, May 23, 2012

Blank Page in SSRS 2008

I have been working on this report at work for hours and couldn't figure out my extra page. I made sure that I did not pass the borders and margin lines. I found this site that solved my issue.

http://www.bidn.com/blogs/dustinryan/ssis/492/blank-page-at-end-of-ssrs-2008-report

How to SELECT NON DISTINCT COLUMNS FROM A TABLE.


SELECT [COLUMN]
FROM [TABLE] T1
WHERE (SELECT COUNT(*) FROM [TABLE2] T2 WHERE T1.[COLUMN] = T2.[COLUMN]) > 1

This returns all of the non distinct (opposite of distinct) rows.


SELECT [COLUMN], Count(*)
FROM [TABLE]
GROUP BY [COLUMN]
HAVING COUNT(*) > 1

This returns what is distinct and how many rows there are that has the value.

Wednesday, May 16, 2012

Diablo 3 Nvidia Surround (3 Monitors) Taskbar Hide.

I was playing Diablo 3 with 3 monitors using Nvidia Surround. I encountered an issue with the windows taskbar being in the way so this is what I did to fix the issue.

1) Go to Nvidia Control Panel.
2) On the Top toolbar next to "Edit" choose "Desktop" then Surround Displays and make sure that "Confine Taskbar to Center Display" is not checked.
3) Go to the normal Windows Task bar right click on it and go to Properties.
4) In the properties check "Auto-Hide Taskbar"
5) Now Launch Diablo 3 with Surround turned on.
6) Make sure Diablo 3 is being ran on Full Windowed Mode.

Enjoy

Saturday, March 17, 2012

Cheap, durable backups

While some people have huge disk space requirements for their computers, upwards of 4 Terabytes or for some simpler users less than 2 GB of non-operating system space, my guess is that most are like me and don't have an overly large need for backing up the very most important stuff.  There are many great online-backup options out there and I do personally use SugarSync for 5 GB of free space over other common options like DropBox.  However, my photos, videos, and important documents cannot fit in that space and I feel the annual cost of backing up online or "in the cloud" would be too costly.  I've found an alternative.

I was of the mind to buy an external hard drive and store it in my fire-proof lock-box at the house, and more recently though to maybe use an external or even internal Solid State Disc (that is, flash memory) since it is more durable.  A coworker of mine also suggested using standard USB flash drives instead, and I thought "that's perfect!"

Benefits for usage as a backup device:
  • Tiny physical size, easy to store multiple
  • Available in large sizes for great prices (32 GB for $16!)
  • Very durable (shock resistant, water resistant)
  • Good transfer speeds (SATA III speeds not necessary for a once-per-month backup routine)
  • If more space is needed in a couple years, you can add or replace for even cheaper
I recommend the deal on Newegg right now through 3/31/12, a 32 GB Voyager (rubberized exterior) for $16 after mail-in-rebate, great price!
http://www.newegg.com/Product/Product.aspx?Item=N82E16820233158

Now I just have to figure out a way to either sync or setup easy manual back-up process...

Thursday, March 8, 2012

Execution ' GUID ' not found during SSRS

Running a SQL Server Reporting Services Report and stumbled upon this error for every report.

Execution ' GUID ' not found

This is how I fixed it.

Created a Text file and named it sessionTimeout.rss

Public Sub Main() Dim props() as [Property] props = new [Property] () { new [Property](), new [Property]() } props(0).Name = "SessionTimeout" props(0).Value = timeout props(1).Name = "SessionAccessTimeout" props(1).Value = timeout rs.SetSystemProperties(props) End Sub

Save the file to the C:.

Then Run this command in command prompt:

rs -i sessionTimeout.rss -s http://localhost/reportserver -v timeout="6000"

(You might need to change the url if you did not keep it defaulted).

Your reports should now run.