Viewing 15 posts - 46 through 60 (of 1,085 total)
Not much difference
DUMP TRAN dbName WITH NO_LOG
GO
CheckPoint
DECLARE @Counter integer
SET @Counter = 1
WHILE @Counter <= 50000 -- 0:00:27 seconds
BEGIN...
February 1, 2007 at 11:11 am
Yes - it helped me recognize I am a knucklehead and did not do the simple addition before I posted...
Try this:...
January 29, 2007 at 2:42 pm
Is this what you are looking for? I have removed DISTINCT, (generally that indicates a problem with table relationships and should be avoided...). Also, the need for an ORDER BY...
January 29, 2007 at 2:01 pm
What results do you hope to achieve? The names of your tables seem to indicate that you are summing apples and oranges.
Does this psuedo code help in giving us...
January 29, 2007 at 12:39 pm
Wow! Kinda harsh...
I am in my busy season, but I still take time to visit this site as often as possible -...
January 29, 2007 at 11:21 am
Can you show us some data that does contain that string? For my little test, it does work.
DECLARE @WordSearch TABLE( Word varchar(100))
INSERT INTO @WordSearch
SELECT 'This string has...
January 24, 2007 at 1:46 pm
I just checked, (was busy with someone else's crisis) and in the words of Ed MacMann (sp) from the Johnny Carson "Tonigh Show"
"You are correct, sir!" I did have...
January 24, 2007 at 12:54 pm
Sorry I missed that - good catch. (although, this is somewhat recursive, so I am not sure it will have an adverse impact... dunno and haven't tested it)
The parse string...
January 24, 2007 at 9:23 am
I would suggest a different avenue.
Here is parse function that will strip your keywords out into a table, (you can change the length to whatever your needs may warrant). ...
January 24, 2007 at 8:36 am
It might be easier to use the ASCII character set from 49 to 57. Look up function ASCII(). You may need to use this in conjunction with PATINDEX().
December 7, 2006 at 3:59 pm
ISNUMERIC is not always reliable. I would suggest you do a search on that within this site.
Try the following:
SELECT ISNUMERIC( 1)
SELECT ISNUMERIC( 'A')
SELECT ISNUMERIC( '-')
December 7, 2006 at 1:25 pm
I did initially try this as a loop - old habits are hard to break... The function was not in the posting and I felt reasonably good about that sucker... ...
December 1, 2006 at 12:03 pm
That's quite the left-handed compliment... (Where did I find that here?)
December 1, 2006 at 11:21 am
We have that issue with information pasted into our web pages and then that information needs to be copied, (and altered) into our SPs.
We created a table and function...
December 1, 2006 at 10:51 am
Viewing 15 posts - 46 through 60 (of 1,085 total)