Tagged Questions
The column tag has no wiki summary.
85
votes
7answers
17k views
Emacs - Multiple columns one buffer
I'm trying to edit some assembly code which tends to be formatted in long but thin listings. I'd like to be able to use some of the acres of horizontal space I have and see more code on-screen at one ...
33
votes
8answers
37k views
Hide/Show Column in an HTML Table
I have an HTML table with several columns and I need to implement a column chooser using jquery. When a user clicks on a checkbox I want to hide/show the corresponding column in the table. I would ...
30
votes
12answers
1k views
Is there any reason to worry about the column order in a table?
I know you can ALTER the column order in MySQL with FIRST and AFTER, but why would you want to bother? Since good queries explicitly name columns when inserting data, is there really any reason to ...
26
votes
5answers
4k views
Why are Oracle table/column/index names limited to 30 characters?
I can understand that many years ago there would be this kind of limitation, but nowadays surely this limit could easily be increased. We have naming conventions for objects, but there is always a ...
14
votes
5answers
17k views
Increase columns width in Silverlight DataGrid to fill whole DG width
I have a DataGrid Control which is bound to a SQL Table.
The XAML Code is:
<data:DataGrid x:Name="dg_sql_data"
Grid.Row="1"
Visibility="Collapsed" ...
11
votes
4answers
621 views
Why is styling table columns not allowed?
W3 specifies that only four CSS rules are allowed for table columns (with the <col> element) - border, background, width and visibility.
Does anyone know the reasons behind this decision? If ...
9
votes
4answers
14k views
add column to mysql table if it does not exist
My research and experiments haven't yielded an answer yet, so I am hoping for some help.
I am modifying the install file of an application which in previous versions did not have a column which I ...
9
votes
2answers
6k views
How can I get the list of a columns in a table for a SQLite database?
I am looking to retrieve a list of columns in a table. The database is the latest release of SQLite (3.6, I believe). I am looking for code that does this with a SQL query. Extra bonus points for ...
8
votes
3answers
85 views
Is there a way to make a column's nullability depend on another column's nullability?
I have two columns (among others) in a database table: ExitDate and ExitReason. Our business logic requires that ExitReason be specified if ExitDate is specified. The ExitDate column needs to allow ...
8
votes
6answers
9k views
Does column exist and how to rearrange columns in R data frame
How do I add a column in the middle of an R data frame? I want to see if I have a column named "LastName" and then add it as the third column if it does not already exist.
8
votes
5answers
7k views
SQL Server 2005 Auto Updated DateTime Column - LastUpdated
I have a table defined (see code snippet below). How can I add a constraint or whatever so that the LastUpdate column is automatically updated anytime the row is changed?
CREATE TABLE dbo.Profiles
(
...
7
votes
3answers
64 views
database columns and foreign key normalization
i am building a new system (lamp - ubuntu server, php 5.3, mysql 5.5, apache 2, redis) for my company (like a version 2.0)
i want to make it right and make it better.
i want to use innodb and i want ...
7
votes
1answer
986 views
How to make an inline-block element fill the remainder of the line?
Is such a thing possible using CSS and two inline-block (or whatever) DIV tags instead of using a table?
The table version is this (borders added so you can see it):
<!DOCTYPE html PUBLIC ...
7
votes
4answers
2k views
Fluent Nhibernate Automap convention for not-null field
Could some one help, how would I instruct automap to have not-null for
a column?
public class Paper : Entity
{
public Paper() { }
[DomainSignature]
[NotNull, NotEmpty]
...
7
votes
0answers
2k views
utf8_unicode_ci vs utf8_general_ci collation differences? [closed]
Possible Duplicate:
What's the difference between utf8_general_ci and utf8_unicode_ci
What's the difference between the two types of column/table collations? Which is preferred and why? ...
7
votes
1answer
12k views
Can I change the column that links to the item with edit menu in a sharepoint list?
There was a similar question asked but it wasn't exactly what I am trying to do.
Here is a link to the question: ...
7
votes
5answers
9k views
CSS Layout 2-Column fixed-fluid
I was wondering if anyone here had a fairly simple tutorial for the following 2 column css layout.
A left fixed column and a fluid content column, with a header and footer and equal column heights.
...
7
votes
3answers
14k views
How does one insert a column into a dataset between two existing columns?
I'm trying to insert a column into an existing DataSet using C#.
As an example I have a DataSet defined as follows:
DataSet ds = new DataSet();
ds.Tables.Add(new DataTable());
...
6
votes
3answers
57 views
What is my error in this CSS float to column code
I just want to make the three articles in 3 columns, when I code it using dreamweaver on design mode panel, they are in three columns but when I preview it using live view or browser its doesnt appear ...
6
votes
1answer
431 views
Simple way to delete a matrix colum in Mathematica
I am trying to delete both a matrix in mathematica. An inelegant way of doing it is as I do below, i.e specifying it in a new matrix as
S = Table[
Ss[[If[i < t, i, i + 1]]][[If[j < t, j, ...
6
votes
2answers
4k views
6
votes
2answers
2k views
WPF MvvM DataGrid Dynamic Columns
I am searching about how to create the columns of the DataGrid from the ToolKit dynamic in MvvM way. But looks like it is impossible !
Is there some one that had to do the samething ?
there is no ...
6
votes
1answer
2k views
How to implement wordwrap on jqGrid which works on IE7, IE8 and FF
How to implement wordwrap on jqGrid which works on IE7, IE8 and FF, while also having column-resize work (grid aligns correctly).
Tried to innerwrap content on each td with a div of specific width ...
6
votes
1answer
2k views
What does the length attribute do when set on the @Column JPA annontation?
What exactly does setting the length on a column do in JPA?
@Column(name = "middle_name", nullable = false, length = 32)
public String getMiddleName() {
return this.middleName;
}
I understand ...
6
votes
2answers
866 views
How to get sqlalchemy length of a string column
e.g. consider this simple table definition (using SQLAlchemy-0.5.6)
from sqlalchemy import *
db = create_engine('sqlite:///tutorial.db')
db.echo = False # Try changing this to True and see what ...
6
votes
1answer
3k views
How do I set a Silverlight Grid layout ColumnDefinition width to “*” programatically?
So I'm creating columns dynamically for a Grid layout in Silverlight (V3.0, C#):
LayoutRoot.ColumnDefinitions.Add(new ColumnDefinition());
and you can specific that the width of the column be ...
6
votes
3answers
6k views
How to programmatically access Control in WPF Grid by row and column index?
Once Controls have been added to a WPF Grid, is there a way to programmatically access them by row and/or column index? Something along the lines of:
var myControl = (object)MyGrid.GetChild(int row, ...
6
votes
9answers
1k views
Database name convention: DATETIME column
What is your naming convention for DATETIME columns (in my case, using MS SQL Server)
For a column that stores when the row was created CreatedDatetime makes sense, or LastModifiedDatetime.
But for ...
6
votes
4answers
2k views
Add a new column in a large mysql table
What would be the fastest way to add a new column in a large mysql table ?
Alter table add column creates a copy of the full table, and then replaces the old one with the new create table. While ...
6
votes
2answers
9k views
How to replace a string in a SQL Server Table Column
i have a table (SQL Sever, in this case) which references paths (UNC or otherwise), but now the path is going to change. In the path column, I have many records and I need to change just a portion of ...
6
votes
1answer
11k views
How can I combine cells in a row in a latex-table?
In a table I want to combine some of the columns, but not in all rows. How can I realize this with LaTeX?
6
votes
2answers
2k views
Setting the comment of a column to that of another column in Postgresql
Suppose I create a table in Postgresql with a comment on a column:
create table t1 (
c1 varchar(10)
);
comment on column t1.c1 is 'foo';
Some time later, I decide to add another column:
alter ...
6
votes
7answers
2k views
Table Column Formatting
I'm trying to format a column in a table using a <col> element. I can set background-color, width, etc., but can't set the font-weight. Why doesn't it work?
<table>
<col ...
6
votes
1answer
10k views
How can I sort a 2-D array in MATLAB with respect to one column?
I would like to sort a matrix according to a particular column. There is a sort function, but it sorts all columns independently.
For example, if my matrix data is:
1 3
5 7
-1 4
Then ...
6
votes
6answers
788 views
Parameterized SQL Columns?
I have some code which utilizes parameterized queries to prevent against injection, but I also need to be able to dynamically construct the query regardless of the structure of the table. What is the ...
5
votes
5answers
74 views
How to change rows to columns in ArrayList<Integer[]>
How to change rows to columns in ArrayList<Integer[]>? For instance:
ArrayList<Integer[]> arr = ArrayList<Integer[]>();
arr.add(new Integer[]{1,2,3});
arr.add(new Integer[]{4,5,6});
...
5
votes
3answers
105 views
Align Strings in columns in JTextArea
I want to print Strings in JTextArea and align them properly. Its hard to explain so I will upload the screen shot of what I am trying to achieve.
So Strings printed in each line are printed from ...
5
votes
2answers
118 views
MySQL retrieve column names where datatype == X
I need to write some code that applies to only certain fields within our database. Specifically I'm looking for any field in all tables of a single database that are of type DECIMAL(12,5);
If it's of ...
5
votes
3answers
187 views
How to do column editing in vim?
Vim is pretty powerful when editing by line - the search/replace tools are modeled to work linewise.
But what if I want to change a particular column across all lines? For example, how can I change ...
5
votes
5answers
109 views
How can I align columns where the biggest number or greatest string is the align indicator?
How can I right align (and left align?) a block of numbers or text in vim like this:
from:
45 209 25 1
2 4 2 3
34 5 300 5
34 120 34 12
to this:
45 209 ...
5
votes
1answer
79 views
Remove any column with same values in MATLAB
I need to remove any column in a matrix which has same values in it. I designed it using a for-loop in MATLAB. I wanted to know if a better/faster way exists using vectorization.
mat = [ 0.56 0.2 ...
5
votes
2answers
187 views
Find highest value in row and echo number and column name
After too many hours I can't find the answer to this.
First my table
id | one | two | three | four | five | galname
-------------------------------------------------
1 | 2 | 5 | 23 | 4 ...
5
votes
1answer
81 views
bash--instersection of two files based on a specific columns?
I want to do the following and would really appreciate if someone can help me accomplish this:
I have 2 tab-delim files named File1.txt and File2.txt(shown below).
If the 2nd column (integer) in ...
5
votes
2answers
1k views
remove an entire column from a data.frame in R
Does anyone know how to remove an entire column from a data.frame in R? For example if I am given this data.frame:
> head(data)
chr genome region
1 chr1 hg19_refGene CDS
2 chr1 ...
5
votes
3answers
3k views
android:orientation=“vertical” does not work for TabWidget
My app has a tabhost with four tabs, and now I'm trying to make nice layouts for landscape mode. In order to make use of additional horizontal space I want to put TabWidget at the right side of the ...
5
votes
1answer
8k views
Adding a column to a dataframe in R
I have the following dataframe (df)
start end
1 14379 32094
2 151884 174367
3 438422 449382
4 618123 621256
5 698271 714321
6 973394 975857
7 980508 982372
8 994539 ...
5
votes
1answer
4k views
DataTable with dynamic columns
I am completely new to JSF, and just attempting a proof of concept to decide whether it will be useful for a project. My POC simply consists of a single page, with a table, containing some data.
The ...
5
votes
1answer
5k views
Modify a Column's Type in sqlite3
Hey guys, I'm pretty new to sqlite 3 and just now I had to add a column to an existing table I had. I went about doing that by doing: ALTER TABLE thetable ADD COLUMN category;.
Of course, I forgot to ...
5
votes
3answers
3k views
How do I alter a mysql table column defaults?
I have a table with a column of type timestamp which defaults current_timestamp and updates to current_timestamp on every update.
I want to remove the "on update" feature on this column. How do I ...
5
votes
1answer
6k views
Making a DataGrid Column Header sortable in WPF using C#
I am using C# in Visual Studio 2008 and I have install the WPF Toolkit. I created a DataGrid in testtest.xaml. The ID and Parts $ columns have the ability to sort the DataGrid by clicking on their ...