Viewing 15 posts - 5,566 through 5,580 (of 7,187 total)
December 31, 2010 at 7:30 am
Yes, I definitely get it. So now what we need from you is the following:
(1) Table DDL for all tables involved, including indexes, constraints, triggers etc
(2) Sample data from...
December 31, 2010 at 6:52 am
OK, I think I understand. You've divided your 70 second video into 0.4 second slices, and you want to record on a graph how many times each of those...
December 31, 2010 at 6:42 am
Shamshad
What are you asking - how to populate the first table from information in the second, or vice versa, or something else?
John
December 31, 2010 at 5:45 am
Shamshad
What are you asking - how to populate the first table from information in the second, or vice versa, or something else?
John
December 31, 2010 at 5:45 am
To be honest, it's unlikely. But, looking at it from the other direction, if you intended to keep it Simple then you'd have been well advised to stop the...
December 30, 2010 at 9:02 am
Why are you doing log backups on a database that's in Simple recovery mode?
John
December 30, 2010 at 8:42 am
The best way is to create a "numbers" or "tally" table - search this site for how to do that, or you can use master.dbo.spt_values as long as you won't...
December 30, 2010 at 6:39 am
It's because when you test for NULL, you shouldn't include quotation marks, otherwise you're testing for the specific value "NULL" rather than for a null value. You need to...
December 30, 2010 at 6:29 am
Use a SQL Server Agent job, as Scott suggested. It's more flexible than a Windows scheduled task, and it's a more intuitive place to put it.
John
December 29, 2010 at 6:48 am
Of course they give you different answers - you have a different column list. Please will you supply sample data (INSERT statements), table DDL (CREATE TABLE statements) and desired...
December 29, 2010 at 4:57 am
You can do:
EXEC tempdb.dbo.sp_spaceused #MyTempTable
I suppose once you have the size of the temp table you could estimate how many rows would add up to your size cutoff. The...
December 16, 2010 at 7:14 am
You've still got that unnecessary WHILE loop in there.
Even if you insist on keeping the loop, the #resultSET table isn't needed - you can just do this:
SELECT
@filter = @filter +...
December 15, 2010 at 7:41 am
Resender (12/15/2010)
as for calculating it daily i don't think that's an option as some databases on our server contain tables with over a million records.
Well, the alternative is to calculate...
December 15, 2010 at 7:35 am
Viewing 15 posts - 5,566 through 5,580 (of 7,187 total)