Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

20
votes
5answers
13k views

How to show all rows in the jqGrid?

jqGrid exposes a property rowNum where you can set the number of rows to display for each page. How do you set the grid to just display ALL rows? Right now I'm just setting the rowNum to something ...
12
votes
4answers
5k views

Row count of a column family in Cassandra

Is there a way to get a row count (key count) of a single column family in Cassandra? get_count can only be used to get the column count. For instance, if I have a column family containing users and ...
6
votes
5answers
7k views

Flex - How to change open DropDownList height

Using FB4, I want to change the height of an open spark DropDownList. By default, it shows up to 6 items before scrolling. My dropdownlist contains 7 items, so I want to change the height of the open ...
4
votes
2answers
196 views

Row count MySQL with three tables

My MySQL DB looks like this **table_schools** id | name 1 | school_1 2 | school_2 **table_classes** id | class | school_id 1 | a | 1 2 | b | 1 3 | c | 2 4 | d | 2 5 | e | ...
4
votes
8answers
2k views

Move SQL Server data in limited (1000 row) chunks

I'm writing a process that archives rows from a SQL Server table based on a datetime column. I want to move all the rows with a date before X, but the problem is that there are millions of rows for ...
3
votes
1answer
124 views

SQL Server - does trigger affects @@Rowcount?

I have a query which do UPSERT or update if exists and insert if not: update MyTable set [Name]=@NewValue where ID=@ID If @@RowCount = 0 insert into MyTable([Name]) values(@Name) Now, I wonder ...
3
votes
3answers
398 views

Why can't I get the @@rowcount value?

Below is a simplified version of SQL script I have. print @RowNum always shows 0, rather than the real record number of the first result set. What's wrong? Thank you. declare @i int, @RowNum int set ...
3
votes
2answers
772 views

How to get the number of deleted rows in PostgreSQL?

I am looking for a way to return the number of rows affected by a DELETE clause in PostgreSQL. The documentation states that; On successful completion, a DELETE command returns a command tag of ...
3
votes
3answers
2k views

Sql Server 2008 MERGE - best way to get counts

I'm wondering what y'alls would recommend as the best way to go about getting the action counts from a MERGE statement in Sql Server. So, i.e. I run a MERGE which does some inserts, some updates and ...
2
votes
1answer
106 views

ToRowCountQuery seems to ignore groupings

I'm trying to create a rowcount-query from a regular query, but the resulting SQL seems to lack the GROUP BY resulting in a wrong count. Does anyone know what I'm doing wrong. First the queries: ...
2
votes
1answer
68 views

How to get matched Rows from MySQLdb.cursors.Cursor python2.6

I'm working with python2.6 and MySQLdb. I have a table with this data +----+--------+ | id | status | +----+--------+ | 1 | A | | 2 | B | | 3 | B | +----+--------+ I want to do an ...
2
votes
4answers
276 views

counting rows returned in postgresql

I need to count the number of rows returned from database.By using following code rv = plpy.execute("SELECT * FROM AA where name = 'active '") rv[0]["id"] works when some values are returned but ...
2
votes
1answer
493 views

Is there a PostgreSQL equivalent of SELECT @@ROWCOUNT in T-SQL?

Question says it all. Any help with working sample much appreciated. Thanks.
2
votes
2answers
434 views

Getting the ROWCOUNT value (not @@ROWCOUNT) in SQL

Is there a way to see what ROWCOUNT is set to? The component that is used to call my stored procedure has an option to limit how many rows are returned, but it apparently does that by setting ...
2
votes
4answers
180 views

sql direct way to get number of rows in table

Hi again people of stackoverflow. I have a routine that has a step that I find unnecessary lets say you want to get all the images from a gallery, and limit a certain number of images per page. $db = ...
2
votes
1answer
304 views

How to check if anything was inserted with INSERT SELECT (T-SQL)

I have an insert statement: insert into parentTbl select firstId, secondId, thirdId, dateTm from importTbl where codeId = @codeIdParam I need to reliably find out if that insert inserted anything ...
2
votes
3answers
231 views

What is a good way to assign order #s to ordered rows in a table in Sybase

I have a table T (structure below) which initially contains all-NULL values in an integer order column: col1 varchar(30), col2 varchar(30), order int NULL I also have a way to order the "colN" ...
2
votes
1answer
287 views

Execute Multiline sybase statement with java.sql.Statement

How can I both set rowcount and then execute a query in a Statement.executeQuery() function? note I don't want to use Statement.setMaxRows() to do this
2
votes
4answers
4k views

How to get row count of ObjectDataSource

How can i get row count of ObjectDataSouce ? I use ObjectDataSource and DataList . I want show some thing to the user for example in a label when there are certain row returned by ObjectDataSource . ...
2
votes
0answers
351 views

Consolidated: SQL 2005+ Dynamic Pagination using SET ROWCOUNT or RowNumber()?

I've a complex SP which applies multiple JOINs and lookup and come complex filters like comma-separated values, etc... On top of it, I've to deploy two complex yet performance-effective features: 1. ...
2
votes
4answers
2k views

Measuring Progress of SSIS Data Flow

I am running a SSIS package to load say a million rows from a flat file, which uses a script task for complex transformations and a SQL Server table destination. I am trying to figure out the best way ...
1
vote
2answers
43 views

How to get number of rows affected by a statement when inside that statement's trigger

I have a statement level trigger that fires whenever INSERT UPDATE or DELETE operations are performed on a table (called customers). I want to display a message (to DBMS_OUTPUT) containing the number ...
1
vote
1answer
28 views

counting rows of sqlite INSERT SELECT

I have two sqlite tables, where one table has a foreign key of the other. CREATE TABLE a (id INTEGER PRIMARY KEY NOT NULL, value TEXT UNIQUE NOT NULL); CREATE TABLE b (id INTEGER PRIMARY KEY NOT ...
1
vote
1answer
26 views

Getting into deadlock while using rowcount delete query

Set rowcount 50000 declare @i int select @i = 1 WHILE ( @i > 0 ) BEGIN DELETE table1 FROM table1 (index index1) WHERE HIST_Timestamp < '2011/11/26' select @i = ...
1
vote
3answers
139 views

SQL Rowcount always returning 1 on insert into command

All I want to do is set a variable to the count of rows affected by the transaction and send that to a table. I don't know why I'm having trouble, but here is my code Begin Declare @errDate datetime ...
1
vote
1answer
303 views

Is it safe to use SET ROWCOUNT?

I am using SET ROWCOUNT because the value comes from a parameter into my procedure. SET ROWCOUNT @take SELECT * FROM Something SET ROWCOUNT 0 Is it possible to another procedure executes at the ...
1
vote
0answers
147 views

Efficient paging in SQL Server 2000 using rowcount

I'm seeking solutions to do paging in sql server 2000 and from all the research done such far, most solutions on sql server 2000 platform use the same technique as illustrated here by Greg Hamilton on ...
1
vote
1answer
297 views

SQL Server Profiler Writes vs RowCounts

When I measure Writes and RowCounts in SQL Server Profiler, I have found one statement (a delete) that is reporting Writes = 26035, but RowCounts of 0. How is this possible? Clearly, the statement ...
1
vote
2answers
292 views

unable to determine row count Ruby-On-Rails

im trying to build a cart in ruby on rails it requires me to show the output like this : You have 3 items in your cart (3 being the number of items in my cart) and im trying to find the number of rows ...
1
vote
1answer
468 views

JTable rowCount problem

I generated a Swing interface with NetBeans. Everything works well, until I change rowCount to 4096. Now I get the exception NoClassDefFoundError. I've tested that from rowCount 3850 it breaks. Is ...
1
vote
3answers
959 views

How do I select only 1 row without using rowcount

How do I select only 1 row in sybase without using rowcount? I don't have the privilege to set rowcount in sybase. Is there a way to select only 1 row? For example: select * from table where name = ...
1
vote
1answer
220 views

Send the total rows/last row, included with the resultset

I have this procedure used for getting items on the current page. I would also like the include an OUT var having the total number of items so I can calculate the total number of pages. USE ...
1
vote
2answers
170 views

Limiting rowcount of SELECT statements, with linked servers

I have these linked servers, A and B. Server A is running SQL Server 2008, and B is running SQL Server 2000. I have written a script to migrate data from a bunch of tables from B to A. The data is ...
1
vote
0answers
222 views

How to get rows count of rowset in OLE DB

How is possible to get rows count of rowset in OLE DB? I have filled RowSet using CCommand and CAccessor and now I dont know how to get rows count. I can go through all rows using MoveNext() but it ...
1
vote
4answers
983 views

JDBC ResultSet total rows

I am implementing Paging in my application. For this i run a query and get a resultset. Now i want to get total no of records in this resultset for my paging calculation. How can i get ? i dont want ...
1
vote
1answer
312 views

Aggregate analog of row count component?

I'd like to have a way to get the sum of a field stored into a variable from inside a dataflow task. The rowcount transform does this, but I can't see how to use any other aggregate functions. Is ...
1
vote
3answers
1k views

Return number of rows affected by SQL UPDATE statement in Java

I'm using a MySQL database and accessing it through Java. PreparedStatement prep1 = this.connection.prepareStatement("UPDATE user_table ...
1
vote
2answers
528 views

Show Row Count in SQL Profiler

Is it possible to show a "Row Count" column in SQL Server Profiler? For example there are CPU and Duration columns but can it show how many rows a query returns?
1
vote
1answer
248 views

MSAccess: Ranking rows based upon column criteria

I have a dataset that looks like this: Account Cost Centre TransNo aaa 111 43443 aaa 111 32112 aaa 111 43211 aaa 112 32232 aaa 113 ...
1
vote
3answers
1k views

How do I get a Flex AdvancedDatagrid to display just one row?

I have an AdvancedDatagrid, whose dataProvider is an ArrayCollection that contains 1 row of displayable stuff. Flex continues to display about 6 rows, the top one filled, the rest blank. I've set ...
1
vote
1answer
1k views

How can I do paging in Sybase without making temp table? (oracle rownum issue)

In Oracle, usually query like this for paging. SELECT * FROM (SELECT *, rownum rid FROM TABLEA WHERE rownum <= #pageend#) WHERE rid > #pagestart# However, there is no "rownum" function in ...
1
vote
3answers
89 views

How do I include filtered rowcounts from two other tables in a query of a third?

I have a MySql database with three tables I need to combine in a query: schedule, enrolled and waitlist. They are implementing a basic class enrollment system. Schedule contains the scheduled ...
1
vote
3answers
595 views

Projections.RowCountInt64() returns 0 when i set SetFirstResult

rowCount returns 0 when query.SetFirstResult is different from 0 ? if the result of pageIndex x pageSize = 0 // it gives me the rowCount but when it is not equal to 0, countCriteria gives me 0 ...
0
votes
2answers
22 views

Number of rows inserted into SQLite db is negative

I'm trying to insert new records into SQLite database from Python code. con = sqlite.connect(connectionString) cur = con.cursor() countOfNewItems = 0 for ... try: ...
0
votes
3answers
58 views

PHP PDO statement returns incorrect row count with SELECT?

Why does this portion of code return true even when it shouldn't be? $stmt = $dbh->prepare("SELECT COUNT(`user_id`) FROM `users` WHERE `username`= :username LIMIT 1"); ...
0
votes
0answers
41 views

MDX, Getting ItemCount and Adding RowCount

Two questions using same query: How could I get the total item count? How can I add a column with the row number for each sorted item? SELECT [MEMBER_UNIQUE_NAME] FROM $system.mdschema_members ...
0
votes
2answers
65 views

Why must I add a DataGridView to a Form in order to get the data?

I had to copy a datagridview to another, in order to iterate through it within a backgroundworker thread, creating an excel export. The copy was made to allow users to made some changes in the ...
0
votes
1answer
132 views

Unexpected row count when using PostgreSQL trigger and hibernate

I have an application which uses Hibernate and I have to include a trigger to copy to a history table all rows modified or deleted in a table. After including the PostgreSQL trigger the application ...
0
votes
0answers
139 views

(Ajax/MySQL/PHP) Count Number of Table Rows while Loading Data from Infile

this is my first post here, so please be gentle ^^ I'm importing a couple huge Text Files into MySQL DB's via an AJAX based Webpanel. The files are imported through AJAX functions calling a PHP file ...
0
votes
2answers
69 views

T-SQL: Include a row count as a column for unique rows

I have a table, we'll call TableA and contains the following 3 columns with data Col1 Col2 Col3 a b c a b c d e f g h i g h i g h i I ...

1 2