Viewing 15 posts - 4,576 through 4,590 (of 6,486 total)
I rarely get the luxury of "calling the ball" on what kinds of data I get, but given the choice - I would definitely also steer towards three separate files....
February 25, 2008 at 7:23 am
You might care to consider not always putting the leading % in there if you don't absolutely have to. This forces a scan of whatever is returned by the...
February 23, 2008 at 8:58 am
hehe - it would actually be funny if it didn't happen that way so very often....
Glad I could help though!
February 23, 2008 at 7:12 am
scroll down - under the post options is a little bar called "last 10 posts in descending order". Hit the + in there, and voila....
February 22, 2008 at 11:03 pm
Jeff Moden (2/22/2008)
February 22, 2008 at 3:29 pm
Which column is NULL?
If a country code is mentioned once in any row - it should show in the column list, and put NULL next to the ones...
February 22, 2008 at 3:21 pm
Hard to be helpful. Not much to go on...
Are we using shell or xp_cmdshell?
What DOS-based command is being used to "convert" this PRN file?
What is the character that gets...
February 22, 2008 at 2:51 pm
Steve J. Larson (2/22/2008)
Could you please provide these many methods? Looking into the CDONT option and have yet to find a satisfactory explanation of how to implement it.
You need...
February 22, 2008 at 2:40 pm
I'm not sure I'm catching all of the details, but it doesn't sound like you need a cursor at all.
Assuming your temp table was the source and you wanted to...
February 22, 2008 at 2:29 pm
The only issue with putting the sending an e-mail through a trigger is that any failure during the trigger execution will make the trigger AND the action roll back. ...
February 22, 2008 at 1:51 pm
The one thing you might ask them is if they can prevent access to SQL from anything other than that box (that's a firewall setting). Meaning - the only...
February 22, 2008 at 1:41 pm
For what it's worth - I've found that it's often necessary to blow away your indexing assumptions, and try others. Meaning - it seems that 2005 might prefer an...
February 22, 2008 at 1:34 pm
Mike -
If you happen to set ANSI_NULLS, then it CAN be true....
Try this:
set ANSI_NULLS OFF
go
select case when NULL=NULL then 0 else 1 end
go
set ANSI_NULLS ON
go
select case when NULL=NULL then...
February 22, 2008 at 1:28 pm
I didn't answer that very well. Let me rephrase.
Your initial question is whether you can PIVOT without aggregation. The answer is no: PIVOT requires aggregation....
February 22, 2008 at 1:21 pm
Agree with John - with a few syntax corrections....
drop table MyNewTable
SELECT top (10) IDENTITY(int,1,1) as RowID, * --top 10 need to be in the SElect, not the from
INTO MyNewTable...
February 22, 2008 at 1:05 pm
Viewing 15 posts - 4,576 through 4,590 (of 6,486 total)