Viewing 15 posts - 1 through 15 (of 34 total)
JKG above hit the nail on the head. But to add to that, if you are using a third party tool that uses extended procedures (e.g. Redgate SQL Backup -...
January 28, 2013 at 12:38 pm
1. Connect to your analysis server
2. Right-click on trhe {server name} and select Reports -> Standard Reports -> General
This should show you the info you need. Good luck :hehe:
December 4, 2012 at 9:42 am
Check the version og Oracle you are using in both systems - that is whether it is 32-bit oracle client and a 32-bit SQL server or both systems are 64-bit.
I...
November 29, 2012 at 12:27 pm
After doing some recheck and online research, we found that adding the TYPE syntax in the SQL script that creates the xml column and that did it.
Thanks:-D
November 17, 2010 at 3:34 pm
Hi there, if you are trying to hide the entire table if some field on the report is blank, then what you do is
1. Right-Click on the table and go...
September 21, 2009 at 6:41 am
Hi there,
The length of the report parameter should increase based on the longest parameter value in your list. It seems a bit weird that it doesnt; giving us some...
September 21, 2009 at 6:31 am
sc2techie (5/8/2009)
May 11, 2009 at 10:51 am
Chris Gierlack (5/4/2009)
May 5, 2009 at 9:19 am
Syed Mehroz Alam (4/29/2009)
I want to add a horizontal line that spans the whole page in a page header. I am using a matrix inside the body so the...
May 4, 2009 at 11:23 am
This does seem weird. Try deleting the field and re-adding it to the report.
May 4, 2009 at 11:05 am
Below is the script that generates the summary report
*******************************************************
SET QUOTED_IDENTIFIER ON
GO
SET ANSI_NULLS ON
GO
if exists (select * from dbo.sysobjects where id = object_id(N'[dbo].[apus_sp_rpt_FSARefunds]') and OBJECTPROPERTY(id, N'IsProcedure') = 1)
drop procedure...
February 13, 2009 at 1:13 pm
Luke L (2/13/2009)
Have you looked at a trace of this query to see what is happening at...
February 13, 2009 at 12:46 pm
suresh,
Try this: -
select OrderFormNo
,ClientName
,OrderDate
,Product
,sum(Value)
,InvoiceQuantity
,PendingQuantity
from AOM_Tbl_PendingOrders
group by OrderFormNo, ClientName,OrderDate,Product,InvoiceQuantity,PendingQuantity
In your case, remember that whenever you use the group by clause you need to add all the other colums...
February 13, 2009 at 11:48 am
Okay. Thank you. I will try a couple of scenarios. I appreciate all your help.
February 13, 2009 at 11:44 am
Hello CrazyMan,
This is something that we just started incorporating into most of our linked server scripts. We have not really looked into it that much to check for any...
February 13, 2009 at 8:27 am
Viewing 15 posts - 1 through 15 (of 34 total)