Viewing 15 posts - 166 through 180 (of 4,820 total)
Please provide a CREATE TABLE statement for the dbo.LogExtract table. You can script that out using SSMS. We have no way to test your code to see what's going on...
October 30, 2019 at 6:51 pm
Erland,
Thanks so much for the detailed specification what will require the mode changes. In my case, it was an INSERT into a table with clustered index, where the table had...
September 27, 2019 at 4:24 pm
FYI, the final key restore was about 5 seconds in duration. I'd still love to know why the initial attempt to restore the key just hung up and sat there...
September 9, 2019 at 2:10 pm
Well, ... the problem has been solved. Apparently, if you don't reconfigure SSRS's service account using the Reporting Services Configuration Tool, SSRS never thinks that the account has changed. The...
September 9, 2019 at 2:03 pm
Okay, folks... I finally have this working. I was actually able to demonstrate the working report today and I'm a very happy camper. It's been a rather long hard road...
July 16, 2019 at 7:47 pm
Well, this has been an interesting exercise... I've learned a couple of things, and hope some of this is useful, as my troubles are not yet over. I'm communicating with...
July 10, 2019 at 10:08 pm
Here's the updated VB Code:
Private Sub GetImpactButton_Click(sender As Object, e As EventArgs) Handles GetImpactButton.Click
Dim VendorID...
July 3, 2019 at 2:01 pm
Well, folks, it seems I've had a "dumb" problem, in that the server URL was not set correctly, but I only discovered that after having to scour the web for...
July 2, 2019 at 7:30 pm
All,
My query is not going to perform well, but it will get accurate results for the existing data, in which I included the m6 example and where I changed the...
July 2, 2019 at 2:18 pm
Whatever you have there, it's not valid XML. You'll have to fix that problem first.
June 6, 2019 at 2:08 pm
Well,
Leave it to Mr. Celko to be a jerk about this. Admittedly, there are some problems with this setup, and the performance isn't going to be great. Also, it's not...
June 5, 2019 at 7:10 pm
Try the following:
ISNULL(TOTAL_BILL_AMT_PRD) == True ? (DT_NUMERIC,1,0) NULL : ((TOTAL_BILL_AMT_PRD - TOTAL_BILL_AMT) == 0 ? 1 : 0)
June 5, 2019 at 5:09 pm
Well,
No surprises from Mr. Celko... he's as rude and insensitive as ever. Maybe even a new low with accusing you of the equivalent of a Hansel and Gretel Witch crime. ...
June 5, 2019 at 4:59 pm
USE master;
GO
SET ANSI_NULLS ON;
GO
SET QUOTED_IDENTIFIER ON;
GO
CREATE TABLE #ChargeDataTemp (
Id int NOT NULL,
AssetReference varchar(50) NOT NULL,
RentType varchar(100) NOT NULL,
EffectiveFromDate datetime NOT NULL,
EffectiveToDate datetime NULL
);
INSERT INTO #ChargeDataTemp (Id, AssetReference,...
June 5, 2019 at 4:46 pm
How about the following, using LAG:
USE master;
GO
SET ANSI_NULLS ON;
GO
SET QUOTED_IDENTIFIER ON;
GO
CREATE TABLE #ChargeDataTemp (
Id int NOT NULL,
AssetReference varchar(50) NOT NULL,
RentType varchar(100) NOT NULL,
EffectiveFromDate datetime NOT NULL,
EffectiveToDate datetime NULL
);
INSERT INTO #ChargeDataTemp...
June 5, 2019 at 4:44 pm
Viewing 15 posts - 166 through 180 (of 4,820 total)