Viewing 15 posts - 3,736 through 3,750 (of 6,486 total)
Todd Engen (4/8/2008)
USE MyDatabase
SELECT 'SELECT COUNT(*), ''' + name + ''' FROM ' + name...
April 8, 2008 at 2:11 pm
Stanley Pagenel (4/8/2008)
Msg 195, Level...
April 8, 2008 at 1:56 pm
Jack Corbett (4/8/2008)
April 8, 2008 at 1:43 pm
Jack Corbett (4/8/2008)
PATINDEX does not use Regular Expression Syntax so your second example is matching on 'A', '-', 'Z' and so the only matches found are 'A' and 'Z'
Then why...
April 8, 2008 at 1:17 pm
Two rather straight forward ways. If the table has no foreign keys, and shouldn't have any data in it as of now, then TRUNCATE TABLE mytable would reset your identity.
The...
April 8, 2008 at 1:14 pm
Try something like this (the collation is key - you need to make sure the sure is case-sensitive:
select *
from mytable
where patindex('%[ABCDEFGHIJKLMNOPQRSTUVWXYZ]%',mytable COLLATE Latin1_General_CS_AI)>0
Now - this is going to cause scans,...
April 8, 2008 at 12:28 pm
born2 -
double check that SSIS isn't making any "stupid" guesses on the datasource properties (which also has column data widths set up). I find that it makes a...
April 8, 2008 at 10:45 am
You're going to have to break it up. You need to the initial query to only return the 8 smallest values per grouping, and then send that to the...
April 8, 2008 at 10:41 am
Stefan Bengtsson (4/8/2008)
If i have the rate 0.5597% and want the yearly effective rate
How do i do that i t-sql
I now the answer, i looked in excel. It should...
April 8, 2008 at 10:15 am
GilaMonster (4/7/2008)
The row 'deletions' are...
April 8, 2008 at 10:05 am
GSquared (4/8/2008)
April 8, 2008 at 9:46 am
For what it's worth - why not make that a computed column? That way you won't have to worry about fullname getting out of synch with last and and...
April 8, 2008 at 9:23 am
Jeff Moden (4/8/2008)
April 8, 2008 at 9:19 am
For what it's worth - the solutions advanced implicitly answer the question of "open" as "how many cases are currently not ended at this moment". Anything that would open...
April 8, 2008 at 8:48 am
Steve Jones - Editor (4/8/2008)
Hah! The UK is running a bit behind because of the shadow from the US! 😉
All I want to know is - who do I call...
April 8, 2008 at 7:47 am
Viewing 15 posts - 3,736 through 3,750 (of 6,486 total)