Viewing 15 posts - 1 through 15 (of 15 total)
Perfect Guys!!
thank you so much!
August 30, 2011 at 9:43 am
Gianluca Sartori (8/30/2011)
;with data (string) as (
SELECT 'Saaaateres'
UNION ALL
SELECT 'NoRepeats'
UNION ALL
SELECT 'aabbbcdef'
),
tenRows (N) AS (
SELECT 1
UNION ALL SELECT 2
UNION ALL SELECT 3
UNION...
August 30, 2011 at 7:45 am
Thanks very much all for your very useful answers!!
I have a last request : How can I fin duplicates characters in a string . I mean I would like to...
August 30, 2011 at 6:31 am
drew.allen (8/26/2011)
WITH Test(TestField) AS (
SELECT 'aaa'
UNION
SELECT 'abc'
UNION
SELECT 'bbb'
UNION
SELECT 'bcd'
UNION
SELECT 'ccc'
UNION
SELECT 'cccccc'
UNION
SELECT 'cccccccccccccccccccccccc'
)
SELECT *
FROM Test
WHERE NOT TestField LIKE '%[^' + Left(TestField,1) + ']%'
It...
August 26, 2011 at 8:42 am
Here a table :
firstname lastname
-------------------- --------------------
aaaaaaa ccccccccccc
Jane ...
August 26, 2011 at 8:34 am
Thanks Phil,
but actually I need to check if all characters in my string are the same without to know the length of my string.
Tell me if I'm not clear and...
August 26, 2011 at 8:17 am
Hello Suresh,
thanks for your answer.
no it's a clustered Index and Yes it is a small table.
The fillfactor is 90.
Xavier
December 19, 2008 at 6:03 am
If your log file growth a lot, you can schedule a log backup every 30 minutes for example.
November 12, 2008 at 9:04 am
Yes you're right, but I tried to delete the other post wihtout success. I'm sorry.
November 12, 2008 at 8:05 am
yes I mean when I connect to a server from my machine the query takes longer than when I run it directly on the server.
I know the data travel across...
November 12, 2008 at 6:57 am
Hello Suresh,
from my computer I execute the query to the remote server.
It's a dedicated server.
Logs an datas files are on separate disks.
November 12, 2008 at 4:25 am
The RAM size of sql server will depend of the instances.
Actually I planned to implement 15 GB...
On each Instance there will be 5 databases for a 90 Gb total size.
There...
July 28, 2008 at 6:57 am
Viewing 15 posts - 1 through 15 (of 15 total)