Viewing 15 posts - 7,921 through 7,935 (of 14,953 total)
Either append the character to the end, like the string parser does, or include something in your Where clause about "and charindex(...) > 0".
November 3, 2009 at 2:47 pm
Was there an increase in the amount of data it's handling?
November 3, 2009 at 1:21 pm
Do you mean like this:
select (SELECT Count(CallLog.ClosedBy) AS Tracker From CallLog WHERE ClosedDate Between '2009-09-01' and '2009-10-30'and Tracker = 'Troy'(
/
(Select Count(CallLog.RecvdBy) AS Tracker From CallLog WHERE RecvdDate Between '2009-09-01' and...
November 3, 2009 at 1:19 pm
I don't understand what you're trying to resolve with this. I ran it, and got output, but I don't understand what the problem is, so don't know where to...
November 3, 2009 at 12:53 pm
Before I could even begin to tune this, I would need the create scripts for all the source tables, insert statements for some sample data for each, and the expected...
November 3, 2009 at 12:48 pm
Hate to say it, but when I had to remove a copy of SQL Express that had been messed up from a workstation, I ended up wiping the machine and...
November 3, 2009 at 12:46 pm
There are dozens of uses.
Search this site for Tally table or Numbers table, you'll find a number of articles and dozens of threads where they come up.
http://www.simple-talk.com has a workshop...
November 3, 2009 at 12:43 pm
Which article are you asking about?
November 3, 2009 at 12:41 pm
Will DateDiff(Week) from the start date of the year give you the week?
November 3, 2009 at 12:39 pm
If an index is below a certain size, reorganizing it won't get rid of fragmentation, because the fragmentation really doesn't matter. Is that what you're running into?
November 3, 2009 at 12:37 pm
Since I don't have a copy of your table, and don't know how it's built, I had to build a table of my own to build the query off of...
November 3, 2009 at 12:34 pm
Try making it "sum(a*1.0)" in the numerator. See what that gives you.
November 3, 2009 at 12:19 pm
Try this:
create table #T (
ID int identity primary key,
AddressFull varchar(1000));
insert into #T (AddressFull)
select 'Mid-Penn CDC
21 South 12th Street
Philadelphia, PA 19108' union all
select 'Line1
Line2
Line3 12345';
declare @Delimiter char(1);
select @Delimiter = '
';
;with
Numbers...
November 3, 2009 at 11:23 am
Lynn Pettis (11/2/2009)
Amazing it is how snooty some can be.
People trying to justify their own illegal/unethical/immoral activities can get very annoying. Usually starts with "it's none of your business".
November 2, 2009 at 3:04 pm
Viewing 15 posts - 7,921 through 7,935 (of 14,953 total)