Tagged Questions

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 | ...
3
votes
1answer
123 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 ...
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
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
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
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
219 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
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
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
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 ...
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 ...
0
votes
2answers
179 views

CTE, ROW_NUMBER and ROWCOUNT

I am trying to return a page of data and also row count of all data in one stored procedure which looks like following: WITH Props AS ( SELECT *, ROW_NUMBER() OVER (ORDER BY PropertyID) AS ...
0
votes
0answers
139 views

SQL trigger to concatenate count where column with padding?

I have a database with the following schema: Table --- Field tblProcessing --- PKProcessingID tblProcessing --- FKCustodian tblProcessing --- FKInterCase tblProcessing --- FKAssetTag ...
0
votes
1answer
159 views

How to check a number of inserted/modified records in TADOCommand?

I am using SQL Server database and after calling a simple SQL script I would like to know how many records were affected by last (or only) executed statement in a script. I cannot find the reference ...
0
votes
3answers
281 views

How to return rows AND a variable from a SQL Server Stored Procedure

Hopefully this is simple. I'm optimizing a stored procedure that returns about 500+ rows. My plan is to return the rows in batches until there are no more rows to get. For example, I'll get rows ...
0
votes
2answers
616 views

Total RecordCount as OUTPUT of Paged Result Set in Stored Procedure

i have a question on stored procedures. I try to get a page of result set and the record count of the whole set. Each of this is working on it's own, but I'm unable to combine it: ALTER PROCEDURE ...
0
votes
4answers
577 views

Limit rows returned using TableAdapter (typed DataSets)

Does anyone know the best way to limit the number of rows returned when using typed TableAdapters? Options appear to be: Pass "top X" as a parameter (can't do this until we're on SQLS2008 Issue a ...