Viewing 15 posts - 2,791 through 2,805 (of 7,502 total)
sandy-833685 (9/27/2010)
And when i try to execute the select statement with convert like
select * from tablename
where convert(varchar(10),time,103)<'06/06/2010'
as i...
September 27, 2010 at 12:53 pm
I'm glad it has been solved using the page method.
I've been confronted a couple of times with this issue and I've been able to filter the troublesome rows using this...
September 27, 2010 at 12:13 pm
it's a petty for us all, but "disable trigger" is not a ddl statement !
So you cannot capture it with a ddl trigger.
We have the same issue as you have,...
September 27, 2010 at 11:52 am
Grant Fritchey (9/27/2010)
September 27, 2010 at 6:52 am
Don't drop your clustering index !!
(because it actually contains the data pages, so a drop will cause all your data to be moved to a heap and all non-clustering...
September 27, 2010 at 1:47 am
James Tech (9/26/2010)
ALZDBA (9/26/2010)
the function on the datetime column is another one. This causes no datetime index to be used !!
This conversion is also member...
September 26, 2010 at 11:57 pm
the cross join is one thing
the function on the datetime column is another one. This causes no datetime index to be used !!
This conversion is also member of the group...
September 26, 2010 at 1:56 pm
Also check your cluster log !!
It may also help with the facts analysis.
A long startup time for your sqlinstance may be cause by an excessive amount of virtual log files...
September 26, 2010 at 1:12 pm
The index will have to be dropped and recreated because of the change of datatype.
Rule number 1: tell the system what you know.
So don't use a (var)char datatype if you...
September 26, 2010 at 12:19 pm
There may be a difference between microsoft week and iso week !
try this:
declare @dates table ( dt datetime not null )
Declare @startdate datetime
set @startdate = '2010-01-01'
insert into @dates
...
September 26, 2010 at 6:14 am
george sibbald (9/24/2010)
September 25, 2010 at 12:10 am
indeed, every object needs its own drop statement.
In SSMS however, you can select all these tables in the detail pane of the tables section and delete them all in a...
September 24, 2010 at 2:44 pm
Oh, indeed quick copy / paste, you know ... forgot to translate the comments, but you got it anyway 😎
Off course, IMHO, it is better to avoid this kind...
September 24, 2010 at 1:38 pm
Keep in mind these "switch" weekends are determined on a country bases.
As in many cases in Europe, every country can do it differently 😉
These are the dates I found in...
September 24, 2010 at 1:10 pm
Viewing 15 posts - 2,791 through 2,805 (of 7,502 total)