Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms (1)

8
votes
1answer
189 views

Computed columns in SQLCLR project in Visual Studio 2010

It appears that MS has a bug when dealing with VS 2010 SQL CLR project and computed columns. I am using Pre/PostDeployScript.sql to drop/add the computed column. However, if I try to deploy from ...
6
votes
3answers
245 views

Why does the Execution Plan include a user-defined function call for a computed column that is persisted?

I have a table with 2 computed columns, both of which has "Is Persisted" set to true. However, when using them in a query the Execution Plan shows the UDF used to compute the columns as part of the ...
6
votes
2answers
3k views

formula for computed column based on different table's column

Consider this table: c_const code | nvalue -------------- 1 | 10000 2 | 20000 and another table t_anytable rec_id | s_id | n_code --------------------- 2 | x | 1 ...
5
votes
4answers
2k views

SQL Server - index on a computed column?

I'm joining to a table dozens of different times, and every time, I join (or filter) based on the results of a SUBSTRING of one of the columns (it's a string, but left-padded with zeros, and I don't ...
5
votes
4answers
7k views

SQL Server Reference a Calculated Column

I have a select statement with calculated columns and I would like to use the value of one calculated column in another. Is this possible? Here is a contrived example to show what I am trying to do. ...
4
votes
2answers
79 views

Computed Column (COALESCE vs CASE vs ISNULL)

I posted a similar question a while back and now as I need to update this code, I am back to ask a follow-on question. Previous question is here: Computed column based on nullable columns My data ...
4
votes
2answers
397 views

Sql Server deterministic user-defined function

I have the following user-defined function: create function [dbo].[FullNameLastFirst] ( @IsPerson bit, @LastName nvarchar(100), @FirstName nvarchar(100) ) returns nvarchar(201) as begin ...
4
votes
2answers
257 views

Why is my CASE expression non-deterministic?

I am trying to create a persisted computed column using CASE expression: ALTER TABLE dbo.Calendar ADD PreviousDate AS case WHEN [Date]>'20100101' THEN [Date] ELSE NULL END PERSISTED ...
4
votes
1answer
128 views

Will Microsoft SQL Server efficiently handle a non-persisted computed column?

I'm having a hard time phrasing this question in such a way that doesn't turn up results for persisted, indexed computed columns. My question is, if I have a table such as: CREATE TABLE Customers ( ...
4
votes
3answers
3k views

SQL Server String Concatenation with Null

I am creating a computed column across fields of which some are potentially null. The problem is that if any of those fields is null, the entire computed column will be null. I understand from the ...
4
votes
1answer
4k views

Sql Server Computed Column Formula syntax

I want to use a computed bit column that will be true if another column in the table is not null. What's the correct formula for this? HasLabel = computed column (bit) Label = varchar NULL The ...
4
votes
5answers
3k views

Alter SQL Function Referenced by Computed Column

If you set up a table's column to be a computed column whose Formula calls a Function, it becomes a pain to change that underlying Function. With every change, you have to find every single column ...
3
votes
3answers
593 views

How to put foreign key constraints on a computed fields in sql server?

Table A has a computed field called Computed1. It's persisted and not null. Also, it always computes to an expression which is char(50). It's also unique and has a unique key constraint on it. Table ...
3
votes
1answer
708 views

Computed columns: SQL or Locally in Entity Framework?

I have some computed-columns of two types: Computed columns based on columns in current table (i.e. Price * Tax) Computed columns based on other columnes (i.e. Price * fn_GetTax(OrderId)) Would ...
3
votes
3answers
576 views

Computed column based on another computed column?

I have a computed column called Cost that returns money. I want to have another column that returns (Cost * 2), but it doesn't allow me.
3
votes
2answers
1k views

SQL Server 2005 Computed Column Is Persisted

I have some computed columns in a table and need to know if I should set Is Persisted to true. What are the advantages? Are there any disadvantages? What does 'Is Persisted' mean?
2
votes
3answers
44 views

Trouble with computed column in SQL

I have a table that I wish to select a subset of columns from but also add on the end a computed column based upon where you are located in a queue. There are the following fields (that are ...
2
votes
2answers
178 views

Get SQL Computed Column Inserted Value

My Table Structure as follow, CREATE TABLE tbl_Info ( [SSEID] BIGINT NOT NULL IDENTITY(1,1), [ShortenKey] AS ConvertToBase([SSEID]), [Title] ...
2
votes
1answer
253 views

Help with creating a computed column (sql server 2008)

Greetings. Need some assistance with creating a computed column on this table: USE [ScienceWorksSummary] GO /****** Object: Table [dbo].[Authors_Articles] Script Date: 04/07/2011 10:38:55 ...
2
votes
1answer
424 views

Adding a computed column to an ActiveRecord query

I am running a query using a scope and some conditions. Something like this: conditions[:offset] = (options[:page].to_i - 1) * PAGE_SIZE unless options[:page].blank? conditions[:limit] = ...
2
votes
2answers
99 views

What are the trade-offs when denormalizing for a computed column?

I hope I am not asking a too obvious question here. For my current project I am designing a relatively simple database using sql server 2008. For one of the tables I have decided to introduce a ...
2
votes
1answer
638 views

Is there a way to pivot rows to columns in MySQL without using CASE?

There are lots of posts out there on pivoting rows into columns for various databases. They seem to fall into two camps, using case statements or using a built in function of the database vendor. I ...
2
votes
2answers
966 views

Identity key on varchar column - T-SQL

I want to know if I can create an Identity (auto increment on a Varchar column. and how can I make it a primary key and create foreign key references on other table. This is the code i have - ...
2
votes
0answers
83 views

Data Generation Plan that concatenates two columns to form Email

Using the Visual Studio Data Generation Plan, I have two columns, FirstName and Lastname, populated from a Data Bound Generator (referencing a database seeded with actual valid First and Last Names). ...
2
votes
4answers
582 views

Computed column should result to string

Here is a snap of my database. Both col1 and col2 are declared as int. My ComputedColumn currently adds the Columns 1 and 2, as follows... col1 col2 ComputedColumn 1 2 3 4 1 5 ...
2
votes
3answers
680 views

SQL Server WHERE Clause using Temporary Columns

I have the following query, which uses a CASE statement. Is there anyway to add into the where clause WHERE IsBusinessDayFinal = 0? without using a temporary table? thanks so much! SELECT ...
2
votes
1answer
217 views

Trying to convert “yy/mm/dd hh:mm:ss” (stored as char) into datetime using computed column

This seems like it should be simple but it's driving me up the wall. I have two columns - 'tx_date' and 'time' stored each as char(10). (bad database design I know, but wasn't my design) From a ...
2
votes
1answer
132 views

Are there any in-memory databases that support computed columns?

We have a SQL 2005/2008 database that has a table with a computed column. We're using the computed column as a discriminator in NHibernate so having it in the database is proving to be very useful. ...
2
votes
1answer
376 views

MSSQL Server - get a whole part of a decimal value in the computed column

Here's my simplified table (SQL Server 2005): table1: col1 int, col2 int, col3 cast(col1/col2 as int) [computed column] for some reason the above doesn't work. i just want to save a WHOLE part of ...
2
votes
3answers
1k views

Create a computed column on a datetime

I have a nullable DateTime column in my SQL Server 2005 table called DateTimeDeleted. I'd like to have a BIT type computed column that is 1 if DateTimeDeleted is not null, otherwise 0. However, I ...
1
vote
1answer
39 views

MATLAB: Ignoring Specific Columns in a Matrix when Carrying Out a Loop

so far I have this: for l=1:50 %# matrix of distances between terminal nodes, index of column represents %# where the searcher is going from and the index of the row represents %# where ...
1
vote
2answers
63 views

Is there a workaround to allow using a computed column in its own formula

I have a column in my table called Value1. I then have a computed column, Value2, with the formula of; (CASE WHEN [Value1] > [Value2] THEN [Value1] ELSE [Value2] END) I can't save this as SQL ...
1
vote
0answers
132 views

EF4 Computed columns in SQL Server not visible

I have an SQL server table with one computed column based on 2 other columns on the same table. I have a WCF application in C# that uses EF4 to access the said table.In EF4 the entity corresponding to ...
1
vote
1answer
127 views

sql same column value for all rows and update it frequently

What I want to achieve: I have a table denoting ID and Credits of each individual ID. I want to rate each ID as, rate(ID)=Credit(ID)/sum(Credit(ID)) the sum is over all IDs I will be updating the ...
1
vote
1answer
62 views

How to change a normal column to “computed” column

I have a table in MSSQL server 2008. I would like to change one of the column in that table to computed column. Could somebody tell me how do I do that ?
1
vote
2answers
188 views

Access SQL computed columns through ActiveRecord

I have a Person model, which includes a property representing the data of birth (birth_date). I also have a method called age(), which works out the current age of the person. I now have need to run ...
1
vote
2answers
68 views

Computed column based on nullable columns

I want to create a computed column that is the concatenation of several other columns. In the below example, fulladdress is null in the result set when any of the 'real' columns is null. How can I ...
1
vote
1answer
59 views

Computed column as PK

I have a computed column based on another column that I want to use as a PK. I have it set up this way but when trying to create foreign keys it always claims that my PK has a different data type ...
1
vote
1answer
220 views

Computed Column Help - TSQL

CREATE TABLE [dbo].[tblLocations]( [latitude] [float] NOT NULL, [longitude] [float] NOT NULL, [location] [varchar](500) NOT NULL, [timestamp] [datetime] NOT NULL, [point] ...
1
vote
2answers
691 views

Persisted computed column with subquery

I have something like this create function Answers_Index(@id int, @questionID int) returns int as begin return (select count([ID]) from [Answers] where [ID] < @id and [ID_Question] = ...
1
vote
2answers
195 views

Creating a computed column in a View. Is it possible?

My SQL view returns the following ID Name AA Gina AB George AC John I would like to add a computed column UpCounter so my view returns something like ID Name UpCounter AA Gina 1 AB George ...
1
vote
2answers
267 views

Oracle hardcoded/computed column datatypes

Is it possible to set the datatype of hardcoded or computed columns in Oracle. For example:: SELECT AccountID FROM Account When I read through the records returned to .Net, I can fetch the ...
1
vote
1answer
125 views

SQL Server: Computed Expression error

Here's a table with a computed column in SQL Server 2005: CREATE TABLE footable AS [identifier] nvarchar(255) NOT NULL, [result] AS CASE WHEN [identifier] like '%\[%]' escape '\' ...
1
vote
1answer
1k views

TSQL Computed column limitations

CREATE TABLE [dbo].[MembershipModule]( [Id] [uniqueidentifier] ROWGUIDCOL NOT NULL, [ParentId] [uniqueidentifier] NULL, [TargetId] [int] NULL, [WebContentId] [uniqueidentifier] NULL, [Name] ...
1
vote
2answers
491 views

MySQL: Selecting the rows having min value of a computed column

The naive way of doing this that comes to mind would be: SELECT name, lev FROM (SELECT name, levenshtein(name, *parameter*) as lev FROM my_table) WHERE lev = (SELECT MIN(lev) FROM (SELECT name, ...
1
vote
1answer
29 views

Client want a field like PREFIX20100001

Client wants a field in the mysql DB to be composed of a prefix, the year, and a counter that resets each year. PREFIX 2010 0001 ... PREFIX 2010 0734, then PREFIX 2011 0001. Are there any mysql ...
1
vote
3answers
261 views

Convert rows to columns allowing duplicates

Consider the following table and rows: Listing A. ID, name, event, type 1, 'John Doe', '2010-09-01 15:00:00.000', 'input' 1, 'John Doe', '2010-09-03 11:00:00.000', 'input' 1, 'John Doe', '2010-09-04 ...
1
vote
0answers
162 views

Is it possible in LINQ to SQL to create a computed column using DataContext.CreateDatabase?

I want to dynamically create a database using my DataContext's CreateDatabase Method. I have manually created mapping classes and tested them. But as soon as I add the Expression Column (see below) ...
1
vote
4answers
389 views

How to enforce NOT NULL in a view's computed column

I want to alter a view as follows: ALTER VIEW [dbo].[ViewOne] as SELECT columnOne, -- not null columnTwo, --not null (convert(decimal(2,0), columnOne)) as columnThree -- I want this ...
1
vote
3answers
43 views

How to calulate a number in a table from a different field in the same table?

Say I have a basic table, products, with 3 fields, productname, cost, and costnotax. Is it possible to automatically fill in the costnotax field by subtracting a percentage from the cost field?

1 2