Viewing 15 posts - 91 through 105 (of 249 total)
It is regarding this issuse: https://www.sqlservercentral.com/forums/topic/sys-object that i would like to drop Production and restore QA in it's place.
The DB schemas are the same. Production just stopped updating...
August 29, 2022 at 6:02 pm
Here is the complete code from Mysql that i am trying to convert/change to TSQL:
App Filter Categories
select a.label as ‘App Category’
, b.label as ‘Menu’
, c.product_uid as ‘Product...
August 29, 2022 at 5:58 pm
Please check my Logic?
August 27, 2022 at 6:07 pm
August 27, 2022 at 6:05 pm
I copied the view, using Import/Export Wizard.
As you can see a view is copied, but it is created as a Table. I dleted this...
August 20, 2022 at 9:24 pm
When i copied the View from QA. i placed it as n Table in Production. I tried to create the view with the DDL from QA, but it resorts to...
August 20, 2022 at 6:06 pm
Thank you. The culprit is "vw_UsageReportCached" or so it seems. I deleted vw_UsageReportCached from Production and imported the same view into Production from QA and it worked.
Im curious, since the...
August 20, 2022 at 2:46 pm
This is the change i found in two tables. I changed it to QA and still no data:
QA
SET ANSI_NULLS ON
SET QUOTED_IDENTIFIER ON
SET ANSI_PADDING OFF
GO
CREATE TABLE [dbo].[auditLevyBreakdown] (
[Id]...
August 20, 2022 at 12:02 pm
I am using the following code to view if data is showing:
Its from the QA and Production db's. I checked to what function/procedure is linked to the...
August 20, 2022 at 10:45 am
Do i need to chech any other functions than Table Value and Scalar value functions?
August 20, 2022 at 9:57 am
Do i need check System Stored procedures too?
August 19, 2022 at 1:42 pm
An update ran and it is giving output now that were previously blank, accept for Value. Any idea's?
August 17, 2022 at 8:14 am
I copied the table and it still does not give me any data back using
SELECT * FROM [dbo].[fn_GetSummaryReport] (
'2022-06-28','2022-07-28')
In Production.
August 16, 2022 at 8:30 pm
Or just copy auditLevyBreakdown from QA to Production, like you said?
August 16, 2022 at 7:55 pm
I dont see any procedure in QA that does this "INSERT INTO dbo.auditLevyBreakdown VALUES
(row one data),
(row two data)"
August 16, 2022 at 7:36 pm
Viewing 15 posts - 91 through 105 (of 249 total)