Viewing 15 posts - 301 through 315 (of 506 total)
@ByronOne,
Post the working code for the benefit of others please.
January 31, 2018 at 2:46 pm
It would be easier to use Excel, PowerBI or some other method from Excel. A Macro could be written to update the spreadsheets.
January 31, 2018 at 12:37 pm
I have a folder of .sql scripts, in a windows path 'E:\DeploymentScripts'.
I want to be able...
January 25, 2018 at 5:35 pm
Are you running SQL Server 2012? If so the best way to track DML changes would be to add columns for validFrom and validUntil, updateSUser. Then add update and delete...
January 24, 2018 at 2:14 pm
Sequential instead of parallel?
January 23, 2018 at 11:22 am
You will need to use dynamic SQL.
DECLARE @sql nvarchar(4000);
SET @sql =
'WITH CTE_Base
AS
( SELECT Cast(XIV.[decmes
January 16, 2018 at 12:39 pm
I'm not clear what you're trying to do. Can you restate the question? Please post according to forum netiquette. If you do that you will likely get faster and...
January 16, 2018 at 10:44 am
January 11, 2018 at 3:27 pm
Add a created-on column to each table. Create history tables with the same structure as the tables you want to audit and add a valid-from datetime2(7), a valid-until datetime2(7) and...
January 11, 2018 at 3:21 pm
January 10, 2018 at 2:02 pm
I would create a history table and an update, delete trigger that inserts deleted along with user and datetime of the edit.
January 10, 2018 at 1:35 pm
Does the login have connect on it's default database or the database specified in the connection string it's using?
January 10, 2018 at 1:26 pm
Viewing 15 posts - 301 through 315 (of 506 total)