Viewing 15 posts - 4,246 through 4,260 (of 14,953 total)
Eric M Russell (5/19/2011)
May 20, 2011 at 6:40 am
Had to failover the server to the passive node to get it done, but it's a done deal at this point.
You should see the "Total CPU Time" on that query...
May 20, 2011 at 6:34 am
rocky_498 (5/19/2011)
Here is the problem, ID Column is not in sequence,ID = H:1105181028581180
ID = H:1105181028581976
And so on……
Those look sequential to me. They'll sort correctly as strings if they...
May 20, 2011 at 6:28 am
Burhan Insel-262978 (5/19/2011)
I'd highly disagree here. It's rather insulting to make this comparison and it's more extreme than needed. You can easily leave your job in most any situation.
We, employees,...
May 19, 2011 at 10:02 am
Ninja's_RGR'us (5/19/2011)
GSquared (5/19/2011)
Ninja's_RGR'us (5/19/2011)
GSquared (5/19/2011)
May 19, 2011 at 8:17 am
Ninja's_RGR'us (5/19/2011)
GSquared (5/19/2011)
May 19, 2011 at 8:09 am
I've gone from $7.50/hour in 2001 to, well HR says I can't say the number but it's more than 4X that. None of it has been through percentage raises...
May 19, 2011 at 7:54 am
Is there a way to tell from that what the next record in the sequence is?
May 19, 2011 at 6:57 am
Then your best bet will be to dynamically create a query that checks all string datatypes in all tables.
Something like:
select 'select ' + case system_type_id when 39 then 'convert(varchar(max), '
when...
May 19, 2011 at 6:55 am
BI has the best market in the US right now. Good pay, lots of job opportunities for skilled people. I don't know about other markets, but in the...
May 18, 2011 at 1:03 pm
The only ways I know of are: http://www.winserverhelp.com/2010/04/getting-started-with-powershell-for-sql-server/
May 18, 2011 at 1:00 pm
I need to know what you want if there are three "C-125"s, for example, before I could write any code. What do you want on the third one, if...
May 18, 2011 at 12:56 pm
LutzM (5/18/2011)
GSquared (5/18/2011)
I put in the non-repeat bit because of the way Steve wrote his original Where clause. I just moved it into the Joins.
Gus: If this concept is...
May 18, 2011 at 12:55 pm
Something to keep in mind:
The sample I gave only works if the ID column doesn't have any missing values. If it does, you need to start the Merge with...
May 18, 2011 at 12:52 pm
That one's easy, assuming I got it right on what you're trying to do.
Start with this:
select *
from MyTable as MT1
inner join MyTable as MT2
on MT1.ID = MT2.ID -1;
You'll see the...
May 18, 2011 at 12:51 pm
Viewing 15 posts - 4,246 through 4,260 (of 14,953 total)