Viewing 15 posts - 1,471 through 1,485 (of 3,008 total)
Gary Varga (3/8/2010)
jay holovacs (3/8/2010)
Gary Varga (3/8/2010)
March 8, 2010 at 9:11 am
Roy Ernest (3/1/2010)
I...
March 1, 2010 at 8:36 pm
TheSQLGuru (3/1/2010)
...that Celko character...
Oh, no! His GOOGLE search bot is sure to find this thread now!
March 1, 2010 at 7:00 pm
george.greiner (3/1/2010)
Michael Valentine Jones (3/1/2010)
That is not Access SQL, that is Access Visual Basic.
As with most Access it is a hybrid of Access SQL and VB... You write the queries...
March 1, 2010 at 2:01 pm
That is not Access SQL, that is Access Visual Basic.
March 1, 2010 at 1:46 pm
Using identity columns as a PK key and putting unique constraints on the candidate keys is the way to go. In many cases, there is no way to know...
March 1, 2010 at 8:46 am
Tom.Thomson (2/28/2010)
March 1, 2010 at 8:09 am
Kingston Dhasian (2/26/2010)
Paul White (2/26/2010)
--------------------------------------------------------------------------------
If you have a pain in your finger, chopping your hand off is not the solution.
In fairness, it is *a* solution, just probably not optimal...
February 27, 2010 at 12:09 am
Welsh Corgi (2/26/2010)
If I'm wrong then I respectfully respect that you forgive me for...
February 26, 2010 at 11:37 pm
Michael Valentine Jones (2/25/2010)
February 26, 2010 at 11:34 pm
Welsh Corgi (2/26/2010)
However there is a lot more to consider that what is addressed in this article.
You are...
February 26, 2010 at 11:15 pm
Dynamic SQL is a very good tool for situations where you have stored procedure input parameters that may or may not be used for selection criteria. By constructing the...
February 26, 2010 at 10:49 pm
Nested REPLACE works just fine:
print 'Load Test data with all strings of Commas from 1 to 8000'
select
NUMBER,
Commas = convert(varchar(8000),replicate(',',NUMBER))
into
#t
from
-- Number Table Function available here:
-- http://www.sqlteam.com/forums/topic.asp?TOPIC_ID=47685
F_TABLE_NUMBER_RANGE(1,8000)
order by
NUMBER
go
print 'Test Replaces'
select
*
from
(
select
NUMBER,
Commas =
replace(replace(replace(replace(replace(replace(replace(Commas
,',,,,,,,,,,',',')
,',,,,,,,,,,',',')
,',,,,,,,,,,',',')
,',,',',')
,',,',',')
,',,',',')
,',,',',')
from
#t
)...
February 25, 2010 at 12:56 pm
In a public forum like SSC, I think it is more important to correct errors in the thread directly than to worry about someone’s feelings. The damage that can...
February 25, 2010 at 10:26 am
Noman Tariq (2/15/2010)
February 15, 2010 at 10:23 am
Viewing 15 posts - 1,471 through 1,485 (of 3,008 total)