Viewing 15 posts - 556 through 570 (of 1,825 total)
Sound to me like a job for SSIS to clean the data prior to processing
November 3, 2010 at 4:21 am
Anyone kind enough to do a spot of proof reading / editing for my article for
http://www.sqlservercentral.com/Forums/Topic1012017-2824-1.aspx
TIA
October 30, 2010 at 8:50 am
You will have to be careful of collation issues but
between 'C00' and 'C14ZZZZZZZZZZZZZZZZ'
will do what you need.
October 28, 2010 at 4:57 am
Always worth considering a proper calendar table too..
October 28, 2010 at 2:26 am
Ahh, making me nostalgic for the joys of dBase 4. Now that was one hell of a way to ruin a company.
October 26, 2010 at 2:29 am
Try using MERGE, you can with that.
October 20, 2010 at 6:04 am
Its most likely do to with the use of the variable in the IN clause.
You are now asking
WHERE ParentRecordId in ("1,2,3,4,5,6")
So you will only get a...
October 18, 2010 at 3:48 am
A slightly different approach,
uses this technique http://sqlblogcasts.com/blogs/sqlandthelike/archive/2009/08/27/sql-and-contiguous-data-ranges.aspx to build a new non-overlapping list of ranges first.
I would be interested in comparative performance over a larger dataset. 😉
Drop Table #NewRanges
go
Create Table...
October 18, 2010 at 1:59 am
bitbucket-25253 (10/15/2010)
Can anyone help this OP?http://www.sqlservercentral.com/Forums/Topic1004378-149-1.aspx#bm1004658
Thaks
Homework surely ???
I always suspect that on employee / student related table , or is it just me ??
October 16, 2010 at 3:15 am
Stefan Krzywicki (10/14/2010)
Kit G (10/14/2010)
Stefan Krzywicki (10/14/2010)
They have color e-ink now, it just isn't in commercial devices yet. There was a Sci-Am article about it a year or so ago.
Neato!...
October 14, 2010 at 9:16 am
As the error states you are attempting to insert an explicit value into the Job_Title_ID column.
As this is an identity column , you should not have to do this.
I would...
October 13, 2010 at 6:36 am
It depends 🙂
Both are sargable, depending on the data being selected and the estimated rows
Try this, commenting and uncommenting the different insert statements
IF OBJECT_ID('Tempdb..#sargTest') IS NOT NULL DROP TABLE...
October 12, 2010 at 9:26 am
Apologies , ive lead on quite a bad steer here.
I originally read your query as
where ltrim(rtrim(Colname)) like @param
its not its
where colname like ltrim(rtrim(@param).
I am assuming that you have an...
October 11, 2010 at 3:30 pm
Mad-Dog (10/11/2010)
OK.and the difference in the sql server machine while the database are the same,can i check anything on that matter?
From what you have said so far, the difference sounds...
October 11, 2010 at 6:52 am
Viewing 15 posts - 556 through 570 (of 1,825 total)