Viewing 9 posts - 1 through 9 (of 9 total)
You can, but you can't read the temp table after your initiating procedure regains control, the table has disappeared!
November 4, 2014 at 6:09 pm
Do your own logging. Define a permanent table to log the date/time start and end of select statement in the stored procedure. You don't have to log after...
August 22, 2013 at 4:44 pm
The output table is the result of a dynamic pivot, so the columns created depends on the values in the data. Yes, its non-deterministic, but fairly standard practise, is...
August 22, 2013 at 4:06 pm
Thanks 🙂 , but I'm trying to run some dynamic sql which I have built into a memory variable, rather than calling a stored procedure. Something like:
select *
into #tab
from...
August 21, 2013 at 11:38 pm
Excellent suggestion. Also,
insert into #tab
exec (@MyDynamicCode)
But "insert into" will only insert into an existing table. What about creating a new table?
August 21, 2013 at 6:49 pm
This is 2013. Surely there is a way to reformat text to suit the width of the device displaying the text? Why settle for a particular fixed width...
August 6, 2013 at 6:03 pm
Other possible "rough matching" filters to apply before the full matching routine:
- the first characters must match
- one of first two characters must match
- 2 out of the first three...
July 25, 2013 at 10:43 pm
The paper you really need to read is:
A Guided Tour to Approximate String Matching
GONZALO NAVARRO
University of Chile
ACM Computing Surveys, Vol. 33, No. 1, March 2001.
It gives a concise statement of...
July 25, 2013 at 4:24 pm
Its unclear if you are trying to match individual words (as in name matching) or entire phrases. The performance of any routine which has to match every row against...
July 24, 2013 at 10:21 pm
Viewing 9 posts - 1 through 9 (of 9 total)