Viewing 15 posts - 1,381 through 1,395 (of 9,641 total)
Okay, you can add the report manager site to the trusted sites in IE without going to that page so just run IE as an administrator and go to bing...
May 30, 2013 at 7:39 am
I'm assuming you are using the GUI table designer to make these changes, which means, since the query is running on the same thread as the GUI it has to...
May 30, 2013 at 6:58 am
lduvall (5/30/2013)
Does that make sense? Am I thinking about it...
May 30, 2013 at 6:55 am
Are you using Excel to open the csv?
May 30, 2013 at 6:26 am
If the user only enters one parameter why are there 3 on the report?
If the user doesn't need to enter data for the last 2 parameters you can make them...
May 30, 2013 at 6:21 am
Saturnem31 (5/30/2013)
the probleme is when I enter http://servername/reportserver I receive a pop up where i should put username and password,...
May 30, 2013 at 6:18 am
rochesterd (5/29/2013)
May 29, 2013 at 1:24 pm
Sean,
I think your choices to produce N rows from 1 row are some type of explicit loop or a triangular join. I think the triangular join will outperform an...
May 29, 2013 at 1:15 pm
Luis Cazares (5/29/2013)
There's a small mistake on Jack's code. A simple tweak on line 19 will correct it.
--Corrected line
CONVERT(INT, CEILING(quantity / CAST( @quanityPerRow AS decimal(10,2)))) AS rowsDesired,
Wait, I made I...
May 29, 2013 at 12:42 pm
Okay. I can never remember the steps exactly to fix this, but eventually I get it right, so this should get you started:
1. Run IE as Administrator
2. ...
May 29, 2013 at 12:41 pm
You should be able to setup a SQL Agent Alert based on the error number that fires when the error occurs. I'm pretty sure SQL Agent will have a...
May 29, 2013 at 12:32 pm
Applications using OLE DB/ODBC/ADO.NET can use prepared sql statements and that's what sp_prepexec is essentially. The output parameter is the handle for the prepared sql statement so that if...
May 29, 2013 at 12:22 pm
Okay, so you want to divide a single row into multiple rows based on the max quantity a single row should contain, 30 in your case. That's an interesting problem...
May 29, 2013 at 12:04 pm
I don't know what you want to divide by. Do you want to total the Quant column and then divide by a count of rows to get an...
May 29, 2013 at 11:13 am
Viewing 15 posts - 1,381 through 1,395 (of 9,641 total)