Viewing 15 posts - 4,021 through 4,035 (of 26,490 total)
TomThomson (3/28/2016)
Lynn Pettis (3/28/2016)
diamondgm (3/26/2016)
If the BI gods do their thing, the report should update hourly
You should also be able to download the data by...
March 28, 2016 at 2:07 pm
scottcabral (3/28/2016)
works, thanks!
It works as long as there aren't two rows of data for the same Download, AccountNum, RootPolicyNum where CurrentStatus = 'Renewed' for both.
March 28, 2016 at 1:59 pm
I came up with the following:
if object_id('tempdb..#Policy') is not null
set noexec on;
create table #Policy
(
Download varchar(20),
AccountNum varchar(20),
RootPolicyNum varchar(20),
PolicyNum varchar(20),
CurrentStatus varchar(20)
);
set noexec off;
truncate table #Policy;
insert into #Policy (Download,...
March 28, 2016 at 1:43 pm
ScottPletcher (3/28/2016)
23:59:59.000 does not really make sense in SQL Server, since it doesn't match any system data type's time sensitivity.Smalldatetime is 23:59 and datetime is 23:59:59.997.
Or datetime2 where it is...
March 28, 2016 at 1:30 pm
Personally, every backup to its own file whether full, differential, or transaction log. Also, personal preference is to disk, then if needed backup the file(s) to tape.
March 28, 2016 at 12:47 pm
This will work, but I'd ask what your intentions are for this as I personally would not use the dates for a close-ended query on date ranges.
with qTally as (
select
...
March 28, 2016 at 12:35 pm
Run this and post results:
select
name DatabaseName,
log_reuse_wait_desc
from
sys.databases;
March 28, 2016 at 11:01 am
Welcome to SSC. First thing I am going to suggest is that you read the first article I reference below in my signature block. It will walk you...
March 28, 2016 at 10:46 am
I had a coworker at a previous employer where I was actually writing PL/SQL :sick: that had TOAD set up to format the code the way he liked it. ...
March 28, 2016 at 10:36 am
diamondgm (3/26/2016)
If the BI gods do their thing, the report should update hourly
You should also be able to download the data by clicking on the...
March 28, 2016 at 10:29 am
Michael L John (3/28/2016)
http://www.rdx.com/Take a look at these folks
Making it easier for others:
March 28, 2016 at 10:23 am
Brandie Tarvin (3/10/2016)
This login does NOT have sysadmin and can't create endpoints. In fact, when I run all the code, I can't find...
March 25, 2016 at 12:09 pm
Ed Wagner (3/23/2016)
Lynn Pettis (3/23/2016)
Ed Wagner (3/23/2016)
Lynn Pettis (3/23/2016)
Ed Wagner (3/23/2016)
Alan.B (3/23/2016)
ChrisM@Work (3/23/2016)
March 24, 2016 at 3:18 pm
Ed Wagner (3/23/2016)
Lynn Pettis (3/23/2016)
Ed Wagner (3/23/2016)
Alan.B (3/23/2016)
ChrisM@Work (3/23/2016)
March 23, 2016 at 6:24 pm
Ed Wagner (3/23/2016)
Alan.B (3/23/2016)
ChrisM@Work (3/23/2016)
The...
March 23, 2016 at 5:20 pm
Viewing 15 posts - 4,021 through 4,035 (of 26,490 total)