The computed-columns tag has no wiki summary.
1
vote
2answers
37 views
Equalizing content between columns
I am looking for an optimized way of displaying dynamically generated items sorted and grouped based on initials (like the image below). Groups can have different number of items and therefore also ...
0
votes
1answer
81 views
SQL Server : computed column error in dateadd formula
These are the columns (simplifying):
myDate as Date
theMonths as int
Then I create a computed column finalDate in Microsoft SQL Server Management Studio 2008 R2, with this formula:
(dateadd(month, ...
0
votes
1answer
219 views
Customize label in stacked column chart extjs
i make columns chart like this but this make mismatch when data are low, that time i need to display it ouside ot the chart
like
is this possible to make outside label in extjs stacked columns ...
0
votes
1answer
123 views
how to sort DataTable columns order base on the condition
I have a dynamic DataTable by executing Stored Procedure like this:
A B C D
1 0 0 1
0 0 0 1
1 1 0 1
how can I sort in descending order base on the sum of each column ? I want it:
D A B C
1 1 ...
0
votes
0answers
121 views
SQL Server 2008 Computed Column / Trigger / Function to link multiple tables and enter data into another table
I've got the following problem, which I'd like to solve in SQL Server 2008.
I have a table Products, each product with a range of up to 3 different areas, which contains information about the total ...
1
vote
1answer
28 views
Error with sum up values in a row using knockout.js and ko.computed
I think this a really basic problem but I just don't see the error. I got the following simple Model:
var Row = function(col1, col2)
{
var self = this;
self.column1 = ko.observable(col1);
...
0
votes
0answers
19 views
How To Persist A Computed Column Where the Formula is a User Defined Function
On a SQL Server 2005 database, I have a table that contains various simple data values in normal columns and several computed columns that provide different cost calculations using these simple data ...
-1
votes
1answer
23 views
Indexing Computed Column of 2 largest integers
According to Sql Server, Any computed column can be indexed only when it is deterministic.
ie., consider columns a,b, and c are of INT datatype and c = a+b. Now column C can be indexed but **when ...
0
votes
0answers
7 views
dataview with a computed categorycolumn
I have created a dataView bond to a view. I need three categoryColumns in the data view the first requires that it is computed, and not tied to a specific column in the view. I have specified a ...
0
votes
1answer
36 views
Creating values in separate columns that are dependent on different substrings
I have the following data frame in R after using melt on some wide-format data:
Condition value
C1SSC 4.5
C2SSC 7.7
TC1SSC 6.0
TC2SSC 7.3
PC1SSC 4.5
PC2SSC 5.7
Each character or ...
0
votes
1answer
51 views
Can we write a stored procedure in a computed column in SQL Server 2008?
I have a situation where I want to place a stored procedure in a computed column. But it didn't work out so I used function instead. Can computed column have stored procedure??
0
votes
1answer
34 views
To use or not to use computed columns for performance and maintainability
I have a table where am storing a startingDate in a DateTime column.
Once i have the startingDate value, am supposed to calculate the
number_of_days,
number_of_weeks
number_of_months and
...
1
vote
3answers
113 views
Best Practices for Computed Column in SQL Server
I'm somewhat new to SQL Server and want to make sure that I use best practices (this site has been awesome for tips, thank you everyone). I'm working with a user table and want to put a "end of ...
0
votes
1answer
136 views
“Error validating formula” when adding Computed Column with CONVERT(DATE, column)
I am trying to add a computed column to a table via SSMS - I'd rather care not to get into the details on why the base column is a VARCHAR(10) and not a DATE and no, I'm not interested in changing it.
...
1
vote
1answer
36 views
TVF output is missing computed column from view it references
I have a view with a computed column, and a TV-function on top of it, (simplified) as follows:
create view dbo.vwEvent_A as
select ea.idEvent, ea.dtEvent, ea.cSys, ..
, sd.sSGJR + '-' + ...
0
votes
1answer
56 views
How can i add a event handler to a customized button inside listview?
This is my markup
<%@ Page Title="Daily Expenses" Language="C#" MasterPageFile="~/MasterPage.master" AutoEventWireup="true" CodeFile="Daily Expenses.aspx.cs" Inherits="Daily_Expenses" %>
...
1
vote
2answers
64 views
How can a computed column value be calculated and then inserted into database at runtime?
How can i write a insert query in my aspx page like following???
insert into tablname(field1 ,field2, field3)values(@field1,@field2,@field1-@field2)
Here I have made field3 a computed column in ...
4
votes
1answer
99 views
Create non-NULL computed column for constant CHAR(1) in SSMS
In my database I have some computed columns to help ensure referential integrity constraints. I use computed columns and not default-value columns because LINQ2SQL, which is what I use, does not ...
0
votes
2answers
78 views
Catch Update/Insert Computed Column of a View [duplicate]
I'm using SQL Server 2005/2008 R2
My SQL script is:
UPDATE MyView
SET MyColumn = 'My new value'
WHERE ID = 7
The error message:
Msg 271, Level 16, State 1, Line 1
The column "MyColumn" ...
0
votes
0answers
6 views
Selecting many adjacent columns easily
I need to add many columns together. Here is an example -
SELECT DISTINCT
a.st, (sum_cat1+sum_cat2+sum_cat3+sum_cat4+sum_cat5+sum_cat6+sum_cat7+sum_cat8+sum_cat9+
...
-1
votes
1answer
202 views
User defined function to calculate differences between two columns based on value provided by user
I have four columns in my table:
Taxandotherexpenditurespercent
*NetAmount***
*Taxandotherexpendituremoney**
Amount
Now what I want is a user defined function in netamount column which calculates ...
-2
votes
1answer
118 views
How to create a column which can calculate difference between two columns given that one column data type is money and another one is in percentage? [closed]
I have a table in sql server 2008 which consist of columns:
Serial No, Particulars,Amount,Tax,Net Amount.
How to make column Tax contain value that can contain money data type as well as ...
0
votes
1answer
42 views
How to create a view for obtaining a column value that is computed from another table
I'm doing some reservation system and i have come up with several tables, and among them are the three below and their relationships.
ROOM_PRICES
ROOM_TYPE VARCHAR (10), # e.g Suite
ROOM_CAPACITY ...
0
votes
0answers
41 views
Setting Rating Column As Computed vs Updating Every Time
I have a table named Companies where there is a Rating column. Company has many reviews and which has its Rating column.
Companies.Rating = Average of its Reviews' Ratings.
My question: It'll be ...
2
votes
1answer
184 views
SQL computed column, recursively summarizing a hierarchy
The [simplified] story so far:
In a .mdf DB under Visual Studio 2010, I have a the following table:
CREATE TABLE [dbo].[SandTable](
[id] [int] IDENTITY(1,1) NOT NULL,
[isDone] [bit] NOT ...
0
votes
2answers
227 views
Compute Column on MySQL Create Table query String
I'm bit new to mysql. I tried to compute column with help of set command to compute new column but it isn't execute (1064 error).
So my question is:-
Is it possible to add query for creating ...
0
votes
2answers
132 views
Computed column expression
I have a specific need for a computed column called ProductCode
ProductId | SellerId | ProductCode
1 1 000001
2 1 000002
3 2 000001
...
1
vote
1answer
337 views
SQL Server - INSERT failed because of 'ARITHABORT'
I use NHibernate and SQL Server 2005 and I have an index on a computed column in one of my tables.
My problem is that when I insert a record to that table I get the following error:
INSERT ...
0
votes
1answer
145 views
Fluent NHibernate - Is it possible to map a property to a persisted computed column in Sql Server
I want to map a readonly property to a computed column in Sql Server using Fluent NHibernate.
The property is the substring of another one. I do this to make the substring indexable and have better ...
0
votes
1answer
66 views
how to delete and keep some columns for a txt file in R?
I have a file that is in txt format and delimited by tabs, here is an extract:
id 1 2 4 15 18 20
1_at 100 200 89 189 299 788
2_at 8 78 33 89 ...
1
vote
2answers
69 views
How to separate each column of matrix for every 100 numbers each time in MATLAB
In MATLAB I have a matrix with of 80000*20 numbers. I would like to calculate the mean, maximum and minumum for the first 100 numbers in column 1 (0-100), the next (second) 100 numbers (101-200) in ...
1
vote
1answer
235 views
Pandas DataFrame - Calculated Column based on subset of Columns
I have the following DataFrame
Qtr Premium Claim Rate
Type Code
A 3 14 3552.77 ...
-5
votes
1answer
168 views
Windows Form Programming in C# [closed]
how can i fetch data in my combo box alphabetically? I'm using c#2005 and sq l server 2005
Example:
there are data in my School_Details database with a table name Student_Info having column name
...
2
votes
1answer
108 views
MongoDB $group and explicit group formation with computed column
Consider this code in SQL that forms groups based on a range of salary:
;With TableWithComputedColumn as
(
select
computedcolumn =
Case
when Salary<30000 then 'Under 30K'
when Salary>30000 ...
0
votes
1answer
294 views
Use computed column or stored procedure
I have a table with a few columns that are used as datetime stamps. The table contains the following columns
UpDate datetime
SearchDate datetime
ExpDate dateadd(hour,24,UpDate)
Active ...
4
votes
1answer
467 views
Cannot persist computed column - not deterministic
I have this function for a computed column :
CREATE FUNCTION [dbo].[GetAllocatedStartTime](@Year INT, @Week INT)
RETURNS DATETIME
WITH schemabinding
AS BEGIN
RETURN ...
-1
votes
2answers
72 views
Can a computer column in design reference another in sql server?
I have 2 computed columns, [StartTime] and [EndTime]
The [StartTime] and [EndTime] are calculated with a formula using the [Week] and [Year] columns.
Now I need another computed column, [Status] ...
0
votes
1answer
69 views
MySQL select new columns for adjacency matrix
I want to construct an adjacency matrix from some data. Suppose the vertices of the graph are user names. How do I select a set of user names from my data to be columns? The rows should just be a ...
0
votes
2answers
244 views
Computed Column Formula
I've created a computed column with this formula:
(CONVERT([datetime],(CONVERT([varchar],[TradeDate])+' ')+CONVERT([varchar],[TradeTime])))
but when I save the table, the formula automatically ...
1
vote
4answers
127 views
SQL compute a column from two rows
I'm looking to compute a column based on two other columns, but I have some special cases where the computation has to take multiple rows into account.
Here's the query as it stands now:
SELECT
...
4
votes
1answer
295 views
Using computed DateTime columns in Entity Framework
StoreGeneratedPattern="Computed" works flawlessly on columns of type timestamp. But you can't display a TimeStamp as a human-readable form.
So you can't show the user "This row was modified on ...
-1
votes
2answers
471 views
sum of multiple columns in Excel [closed]
In the appended Excel document, how can I construct the 6th column F, defined as F=A-(B+C+D+E)?
The values in F should all be 0, if I calculated everything in that table correctly.
P.S. I don't ...
0
votes
1answer
179 views
How to force sql server to ignore insert on computed column instead of throwing error?
I have a table to which I would like to add computed column (with values different for each user - needed for permissions).
Problem is that this table is part of Microsoft Dynamics NAV which don't ...
0
votes
5answers
915 views
Create Computed Column using data from another table
I have a SQL Server 2008 R2 database. This database has two tables called Pictures and PictureUse.
Picture table has the following columns:
Id (int)
PictureName (nvarchar(max))
CreateDate ...
1
vote
1answer
323 views
MS SQL format calculated column
I have a computed column which is calculated this way:
(dateadd(month,[amorted_months],[real_date_start]))
The above stays in the Formula property of the column. This formula displays for example
...
1
vote
1answer
256 views
Find SQL Server 2008 computed column dependency
I want to search whether a columns is participating in a computed column expression.
I came up with this
SELECT
(select name
from sys.columns
where column_id = ...
5
votes
2answers
106 views
Computed column index
I have a table Com_Main which contains column CompanyName nvarchar(250). It has average length of 19, max length = 250.
To improve performance I want to add a computed column left20_CompanyName which ...
0
votes
1answer
152 views
Schema bound and computed columns dependency loop
Well this isn't good.
I have a schema-bound function called "GetFriendlyProductItem" which returns a human-readable name for a product from the ProductItems table.
The ProductItems table in turn, ...
0
votes
0answers
154 views
Multiple SQL Server Computed columns populate using a single UDF possible?
I have to populate two columns(say EmpId and EmpName) as computed in my View. I was using a scalar User Defined Function to get that id from another table. But now, I have to get both the columns. Is ...
1
vote
1answer
257 views
SQL Server computed columns and EF model-first
I'm working with EF5 using the model-first approach. I've designed the model and executed the SQL script which generated the corresponding database (using "Generate Database from Model").
I then had ...



