Viewing 15 posts - 53,116 through 53,130 (of 59,064 total)
You're missing the point... you will not get all of 01/04 using BETWEEN...
January 4, 2008 at 12:22 am
Not sure why you're whackin' at me on this one, Gail... real fact of the matter is that 4 million internal rows were generated and they don't show on the...
January 3, 2008 at 11:40 pm
No... it's not perfect if you want to include the whole day of 01/04/2008...
January 3, 2008 at 11:26 pm
No, they won't. At best an exec plan shows the number of rows that each operator accepted, processed and returned, but that's the number of rows in the result set,...
January 3, 2008 at 11:24 pm
Heh... I use the Mil-spec Mark I Mod I Grey Matter Data Integrator... works everytime and any costs incurred can be simply resolved by a good night's sleep and maybe...
January 3, 2008 at 10:07 pm
It's because you're converting the dates to text... try this, instead...
SELECT * FROM [MyDateTable]
WHERE StartDate >= '02/01/2007'
AND StartDate < '01/05/2008'
Notice that the "<" is in relation to the NEXT...
January 3, 2008 at 10:01 pm
p.s. I just noticed that I left the code in that creates the "Raw2" table... that code is just not necessary and may be removed. Sorry for the...
January 3, 2008 at 9:50 pm
Ok... sorry for the delay... couple of things came up and I couldn't get back to this... a shame, really, because this was kind'a fun.
In order to split the...
January 3, 2008 at 9:48 pm
Did you use Clustered or Non-Clustered?
January 3, 2008 at 7:25 pm
Check the spelling of @StartTime in the proc... notice... 2 "T's" in your exec... does it have 2 "T's" in the proc?
January 3, 2008 at 7:11 pm
First things, first... call to the proc should be...
EXEC importemp 'EmployeesOld'
... not what you posted.
Second, you have a coding error... correction is highlighted in red...
ALTER PROCEDURE importemp
@dbname varchar(30)
AS
begin...
January 3, 2008 at 7:06 pm
Yes... must it be a function or can you use a stored procedure to do the concatenation? Store procedure can use a temp table that is defined before the...
January 3, 2008 at 6:57 pm
Kwitzell,
For those rows that are duplicated, which row would you like to keep... that is, do you want to keep the one with the largest ID or the smallest?
January 3, 2008 at 5:45 pm
Nothing wrong with reading the registry...
January 3, 2008 at 5:42 pm
Viewing 15 posts - 53,116 through 53,130 (of 59,064 total)