Viewing 15 posts - 3,016 through 3,030 (of 15,381 total)
GilaMonster (4/13/2015)
Alan.B (4/10/2015)
April 13, 2015 at 7:31 am
GilaMonster (4/13/2015)
Sean Lange (4/10/2015)
sql-lover (4/10/2015)
SELECT
t.name table_name,
s.name schema_name,
p.rows AS total_rows
FROM sys.tables t
join sys.schemas s on (t.schema_id = s.schema_id)
join sys.partitions p on (t.object_id =...
April 13, 2015 at 7:29 am
sunitkrishna (4/13/2015)
Thanks for the answer.
This will work only when the designations are known beforehand,right?
In my case the designations are not fixed and we take the values from the designation table.
Any...
April 13, 2015 at 7:22 am
sql-lover (4/10/2015)
So going back to my original question. If I want to be 100% sure that the table has zero rows, should I use COUNT(*) instead?
Yes. If you want 100%...
April 10, 2015 at 2:27 pm
Greg.Jackson (4/10/2015)
How would I do that?
You don't want to get the "last row" modified as you stated. You want to get ALL rows currently being modified. Remember that triggers in...
April 10, 2015 at 2:06 pm
sql-lover (4/10/2015)
SELECT
t.name table_name,
s.name schema_name,
p.rows AS total_rows
FROM sys.tables t
join sys.schemas s on (t.schema_id = s.schema_id)
join sys.partitions p on (t.object_id = p.object_id)
WHERE p.index_id in...
April 10, 2015 at 2:04 pm
yb751 (4/10/2015)
Sean Lange (4/10/2015)
This is wrong on a couple of levels. The first...
April 10, 2015 at 12:58 pm
Slightly off topic here but I have to ask. When you say In/Out what does True represent?
This is wrong on a couple of levels. The first is that the...
April 10, 2015 at 12:33 pm
Brandie Tarvin (4/10/2015)
Grant Fritchey (4/10/2015)
Is everyone OK? Are people ill or something? Because this just happened and it has me concerned:
Not that I've ever been that high, but I'm putting...
April 10, 2015 at 12:26 pm
tomsharp85 (4/10/2015)
April 10, 2015 at 9:24 am
J0shu@ (4/10/2015)
April 10, 2015 at 8:38 am
J0shu@ (4/10/2015)
A quick question \ concern (probably due to my lack of knowledge)
If I opt for essentially going horizontal vs....
April 10, 2015 at 8:27 am
maurer.martina (4/10/2015)
30 years ago I write a cobol-parser in 6 weeks in programming langage "turbo pascal". But cobol was/is an easy language, and I...
April 10, 2015 at 8:07 am
J0shu@ (4/9/2015)
April 10, 2015 at 8:02 am
SQL_Surfer (4/9/2015)
Sorry, I attached incomplete plan. I've reattached the complete plan.
Thanks for the updated plan. Now can you post all the other information needed to help? The article I reference...
April 10, 2015 at 7:55 am
Viewing 15 posts - 3,016 through 3,030 (of 15,381 total)