Viewing 15 posts - 16 through 30 (of 117 total)
hi Babe, I ended up getting it working by creating a scalar function, since it was only returning one number anyway, thanks for the reference to iEnumerable. Definitely going...
March 20, 2015 at 11:04 am
Hi OldHand, you set me on the correct path, precision was set; however, Scale wasn't. Fixed now, thanks
March 13, 2015 at 8:03 am
Hi, turns out, I need to modify the 'Scale' property. I was trying to modify the length property and couldn't. ~thank you!
March 13, 2015 at 8:02 am
Hi BWFC, yes I could and use a coalesce in a select, this question came to mind when I was creating the table, and thought it would be possible, thanks...
March 11, 2015 at 9:33 am
So in the table below, I would like the appKey value to = riKey value as a default value ...
CREATE TABLE [dbo].[riKeySchema](
[keyID] [int] IDENTITY(1,1) NOT NULL,
[riKey] [varchar](250) NOT NULL,
[appKey] [varchar](250)...
March 11, 2015 at 8:38 am
jphillips 46546 (3/4/2015)
Are you only inserting a single row that is just values stored in package variables?
Hi jphillips, it will be one row at a time. Each row will...
March 4, 2015 at 1:04 pm
Ok, I came across this script below, but I am getting the following error, is there any way to resolve this?
Query generated:
SELECT *
FROM dbo.t_OutlierCalc_BM
UNPIVOT (
value FOR...
December 18, 2014 at 2:33 pm
Hi Old Hand, I'm probably not explaining this as well as I could ...
I need the bottom 25% of the 'Value' grouped by 'MainGroup'
Loyaltyexternal12875
Loyaltyexternal1946
Loyaltyexternal487
Operation's SupportInternal1864
Technicalexternal1405
Technicalexternal606
Technicalexternal467
Temporary AssignmentsInternal1184
December 16, 2014 at 1:03 pm
Ok, I want the bottom 25% value of the 'Value' column, broken up by MainGroup ideally broken into 4 quarters.
IF OBJECT_ID('TempDB..#mytable','U') IS NOT NULL
...
December 16, 2014 at 12:45 pm
Thank you all for your valuable comments and information.
October 21, 2014 at 7:30 am
Hi Erik, I would like to create a function that would give me a 'weighted average' total number * .weighting ie, silver is worth 40% of gold so silver =...
October 20, 2014 at 12:41 pm
my stored proc was producing an error based on the parameters I was sending it, I was able to instantiate the object using: rv_SalesSC.LocalReport.DataSources.Add(new ReportDataSource("dsTotalOrdersCalls", odsSalesSC)); which is the name...
September 18, 2014 at 9:24 am
The following code behind resolved this for me:
if (!Page.IsPostBack)
{
...
July 29, 2014 at 10:38 am
Thank you to both, I selected Luis as the answer because of the direction to the Ceiling function, was a learning curve for me.
May 20, 2014 at 2:05 pm
Viewing 15 posts - 16 through 30 (of 117 total)