Viewing 15 posts - 571 through 585 (of 806 total)
Set NoCount On
Create Table #X(N Char(1))
Insert Into #X Values('A')
Insert Into #X Values('a')
Select
*
From #X
Where ASCII(N) = 65 --Use the value rather than convert it ASCII('A')
--Select * From #x
Drop Table #X
Not...
October 27, 2003 at 10:10 pm
Try adding dbo. in front of it.
If you look in the list of functions in EM, is it there?
Cheers,
Crispin
October 24, 2003 at 4:14 am
quote:
im write, customer wrong.
How many times has this happened?
Cheers,
Crispin
October 8, 2003 at 7:42 am
Text between to tags is just that, Text.
Open the dicument with IE or XML Spy. If both of them render the document, what you have is fine.
You could, for...
October 8, 2003 at 7:34 am
Kleb, I did a couple tests awhile ago between the two types.
Differences become apparent when you work with large tables (1000's or rows)
It might have been the topic I had...
October 8, 2003 at 3:45 am
Another easy way is to use a function to split your string.
I have a functin called SplitString which requires a string and a delimiter. It returns a table.
Then use:
October 7, 2003 at 10:39 pm
Hi Phill,
I guess I should have added in the software settings etc.
Both are SQL 2k with SP3a.
MDac would both be whatever came with SP3a.
Raid on dev is hardware (Cache unknown)
Workstation...
October 5, 2003 at 11:57 pm
A decent place to start is http://www.w3schools.com/
Have a wide selection of various languages.
Cheers,
Crispin
October 2, 2003 at 8:19 am
You got users for those functions? I got developers for those functions...
October 2, 2003 at 6:57 am
Was thinking. How about a SQL assistant? It can hover around EM and QA.
Cheers,
Crispin
October 1, 2003 at 6:35 am
ha ha!
No, I have yet to see it be useful.
God help us the day it gets promoted from Office Assistant to Windows Assistant!
Cheers,
Crispin
October 1, 2003 at 3:20 am
hmmm, I'm gonna have to trust you on this one as I do not have a table with a couple million rows.... 🙁
I agree that if you taking a couple...
September 25, 2003 at 10:35 pm
While the plan is as you said, have a look at the times. Dynamic SQL is expensive. Fastest option is still having the OR's.
UDF becomes the slowest.
September 25, 2003 at 6:47 am
Not entirely sure of the answer but have to disagree with the where clause.
I have yet to have that cause a performance issue.
I use it a lot (SQL2K) without any...
September 25, 2003 at 5:39 am
You can use the extended proc http://www.sqlservercentral.com/products/jgama/XP_file/ and write result string to a file.
Cheers,
Crispin
September 22, 2003 at 10:51 pm
Viewing 15 posts - 571 through 585 (of 806 total)