Viewing 15 posts - 6,901 through 6,915 (of 26,490 total)
Is this what you are looking for?
create table dbo.BillTest (
TypeID char(3),
Code ...
March 23, 2014 at 10:41 am
I love Chipolte, too bad there isn't one out here in Afghanistan. I got to finish my lunch.
March 22, 2014 at 10:11 pm
Just a guess, but I would think as long as you have the certificate used to encrypt the database with TDE it should not matter what backup software you use,...
March 22, 2014 at 9:52 pm
Problem I see is the DROP EXISTING in the create index statement. If the index exists you drop it. For the DROP EXISTING to work the index must...
March 22, 2014 at 4:07 pm
marcossuriel (3/22/2014)
Thank you for reading my post. I think I'm half way from where I need to be with this query below. My end goal is to be...
March 22, 2014 at 3:44 pm
Modified the order by so that it listed output in descending order by RepairsOfThisTire by DealerId, which what you original indicated what you also wanted.
CREATE TABLE dbo.Table1 (DealerId INT,...
March 21, 2014 at 4:03 pm
Added another dealer with 10 orders, 9 for one timre and 1 for a different tire. The new dealer shows up, but again the count of the Repairs for...
March 21, 2014 at 3:51 pm
Added two more orders for the same tire and Dealer 3 shows up but only reports the tire as 66% of the total when in actuality it is 100%.
CREATE TABLE...
March 21, 2014 at 3:27 pm
Curious, is this what you actually want? I added a third dealer with only one order for one tire. This dealer does not show up in the results...
March 21, 2014 at 3:21 pm
Just an FYI, you shouldn't order by ordinal values. You really should specify the column names you are ordering by. If I remember correctly ordering by ordinal values...
March 21, 2014 at 3:11 pm
Don't have an answer to your question, but I have a question that may help. How would you capture deletes from the source table? CDC should capture this...
March 21, 2014 at 12:00 pm
Here is how I would do it. First of all, since you appear to be running SQL Server 2008, I would not use sysobjects.
declare @SQLCmd nvarchar(max);
select @SQLCmd = stuff((select...
March 21, 2014 at 11:52 am
Here is my shot at what you were trying to accomplish. The only difference between my final output and yours is that I left off the ID as it...
March 21, 2014 at 9:10 am
Glad you got an answer because I still haven't figured out what it is you are actually trying to accomplish.
March 20, 2014 at 9:32 am
malcolm.garbett (3/20/2014)
Lynn Pettis (3/20/2014)
...from your original post, there really isn't enough to really help you...
Value 1 = 10
Value 2 = -12
Can they be summed to produce...
March 20, 2014 at 8:44 am
Viewing 15 posts - 6,901 through 6,915 (of 26,490 total)