Tagged Questions
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
3answers
400 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
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
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 ...
1
vote
1answer
306 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
1answer
298 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
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
2answers
529 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?
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 ...