Viewing 15 posts - 31 through 45 (of 216 total)
In some of these cases we obviously don't have time to go thru a proper development/test/deploy cycle. When quick data changes are needed, and that same change/fix is needed on...
April 16, 2015 at 9:00 am
Interesting article; Dwain requires that, for a given product, the EffectiveStartDT of the next timeline matches the EffectiveEndDT of the previous. This helps to enforce no overlapping dates for a...
March 24, 2015 at 8:35 am
Phil Parkin (3/17/2015)
dwain.c (3/16/2015)
Use CONSTRAINTs to prevent overlaps and gaps in the first place:Self-maintaining, Contiguous Effective Dates in Temporal Tables[/url]
..maybe gaps are ok. Otherwise, it's unclear why you would ever...
March 17, 2015 at 8:47 am
No Phil, this is doing the trick. I'm seeing the overlaps. Thanks!
March 16, 2015 at 9:04 am
In a perfect world, there are several ways to keep the logs smaller; i.e. Don't do everything in one large transaction. Batch it into smaller transactions. Your log shouldn't need...
March 9, 2015 at 11:18 am
Perry Whittle (3/9/2015)
I'm sure you've heard a hundred times "don't shrink your transaction logs".
If...
March 9, 2015 at 8:00 am
We also run a DWH with almost all the DBs in simple recovery mode. I run a script like this every night though I don't take the extra check of...
March 9, 2015 at 6:56 am
When saving the package to SQL Server, did you specify the entire SQL instance name?
Ken
December 31, 2014 at 9:02 am
I didn't start a transaction so there's nothing to roll back. Must have been one of those implicit transactions.
Anyhow, when I checked this morning everything had cleared out of the...
December 31, 2014 at 7:14 am
ggeier (11/14/2013)
Why not use sp_helprevlogin to script the logins/users instead? http://support.microsoft.com/kb/918992Also, any reason why you decided to not include all permissions and only script roles?
sp_helprevlogin doesn't do users;...
April 4, 2014 at 2:35 pm
Nice use of MS_ForEachDB here. We don't use it much here because it's undocumented and can be a little picky with syntax. We use this type of construct to loop...
April 29, 2013 at 10:42 am
We have data retention jobs that hang sometimes and decided to do something similar; automatically kill them at a certain point.
SELECT * INTO #JobInfo
FROM OPENROWSET('sqloledb', 'server=(local);trusted_connection=yes'
, 'set fmtonly off exec...
April 25, 2013 at 12:34 pm
Thanks a lot! SUSER_SNAME() is doing it.
Ken
April 12, 2013 at 10:02 am
At a minimum I think SSIS (MsDtsSrvr.exe) would need to run on the box.
Ken
April 10, 2013 at 1:56 pm
reuben.anderson (4/10/2013)
April 10, 2013 at 10:00 am
Viewing 15 posts - 31 through 45 (of 216 total)