Viewing 15 posts - 3,151 through 3,165 (of 26,490 total)
January 20, 2017 at 12:48 pm
Not really helpful.
If you delete data from a table would sp_clean_db_free_space satisfy a requirement that the data could not be recovered by forensic tools. I am starting to...
January 20, 2017 at 9:28 am
If you had the opportunity to establish the processes and infrastructure to accomplish CI/CD from the ground up in a new company, how would you start?<
January 19, 2017 at 5:41 pm
Looks good, except for my OCD when it comes to formatting.<
January 19, 2017 at 3:35 pm
Really need some info here.
<b
January 19, 2017 at 3:27 pm
After this:
when 'text' then 'cast([' + column_name + '] as varchar(max))'
add this:
January 19, 2017 at 2:55 pm
-- Demonstrate math
declare @date date = '2016-03-31';
select @date CurrentDate, DATEADD(month, -1, @date) ReportDate, ReportYear = YEAR(DATEADD(month, -1, @date)), ReportMonth = Month(DATEADD(month, -1, @date));
-- Here is...
January 19, 2017 at 2:50 pm
Just a quick question, If generating the report in January 2017 are you looking for just data in December 2016 or do you want December 2016 and in January 2017...
January 19, 2017 at 2:23 pm
January 19, 2017 at 12:39 pm
January 19, 2017 at 11:50 am
Amazing, the answer to the problem was right there in the error message. But of course people are no longer willing to do any troubleshooting before asking for help.
January 19, 2017 at 11:35 am
Try the following for your trigger:
create trigger dbo.UpdateBatchNum on dbo.test after insert
as
begin
with BaseData as (
select
project_id,
service_id,
BaseBatchId...
January 19, 2017 at 11:24 am
Viewing 15 posts - 3,151 through 3,165 (of 26,490 total)