Viewing 15 posts - 2,926 through 2,940 (of 6,486 total)
I understand that - but you're still not getting my question. SQL Server doesn't acknowledge physical order, so there's ultimately no way (without something like an autonumbered field) to...
June 13, 2008 at 9:25 am
to look for the literal %, enclose it between square brackets.
Something like:
create table #strings(str_all varchar(20))
insert #strings
select 'cow 1' union all
select 'cow 2' union all
select 'cow 3' union all
select 'cow%1' union...
June 13, 2008 at 9:18 am
What order do you plan on using in the selection process from MasterList? As in - positions 3,10,17 based on what ordering scheme?
June 13, 2008 at 8:55 am
Manish Mittal (6/13/2008)
You can create a SQL job by using Enterprise Manager, schedule the job to run on daily basis and write following SQL stsement in Command text box...
June 13, 2008 at 8:16 am
Grant Fritchey (6/13/2008)
Whoa! What a mess. So, in short, FIRST() functions in a fashion somewhat, but not entirely, similar to TOP(1)?
Essentially. The main difference in my mind is that...
June 13, 2008 at 7:36 am
Kargin - this is not so much an indexing thought, more taking a look at the Regex function. You're calling a table-valued CLR function twice, and running aggregates on...
June 13, 2008 at 7:32 am
don't know if this will help, but - there was a discussion not to long ago about Top @N making some really poor decisions on execution plans. Something akin...
June 13, 2008 at 7:14 am
I think you hit the nail on the head when you were describing the issue at hand. It's not so much that the processing time is going to change...
June 13, 2008 at 6:58 am
Yup - I certainly use primary keys on my Access tables, which I think also throws in some extra "incertainties" into these. The behavior around compact does sound familiar,...
June 13, 2008 at 6:46 am
hmm... didn't notice the double-post until now....
Please don't cross-post - you end up diluting/confusing the conversation. Besides you tend to piss off regular posters so you might get less...
June 13, 2008 at 6:40 am
Sergiy (6/12/2008)
Let's say, it was an intentional bug to make OP to analize and understand the code, not to just copy-paste it.
😉
Does it work as an excuse? 😛
And...
June 12, 2008 at 10:02 pm
Stephen Morley (6/12/2008)
MS Access holds an internal bookmark on records in tables so it can determine the first record entered into that table....
June 12, 2008 at 9:49 pm
Lowell (6/12/2008)
unless you've added a primary key to the table, because Access is file based, Access really does keep...
June 12, 2008 at 9:42 pm
Stephen Morley (6/12/2008)
The help excerpt you published references a DAO recordset object. I am not using a recordset in my example - i am simply creating a query against a...
June 12, 2008 at 9:32 pm
Agreed - with the get external data and connection based on windows auth - you've got it all covered and no VBA needed.
June 12, 2008 at 9:28 pm
Viewing 15 posts - 2,926 through 2,940 (of 6,486 total)