Viewing 15 posts - 826 through 840 (of 9,641 total)
Lynn Pettis (8/7/2014)
SQLRNNR (8/7/2014)
Lynn Pettis (8/7/2014)
Now this just pissed me off:********* (8/7/2014)
thanks lynn, for being forthcoming (finally!)Leaving out the name of the perp.
Haha - too easy to find. :crazy:
At...
August 7, 2014 at 10:50 am
Do you have any errors on the SQL cluster at those times? Is this an intermittent problem or does it happen every time the package runs? Have you...
August 7, 2014 at 10:43 am
Are you sure that BIDS/SSDT has been installed on the machine? If it has it sounds like a corrupted install and I'd first try to re-run the install doing...
August 7, 2014 at 10:42 am
I think it is easier to do this in PowerShell than T-SQL so I'd put it in the load. I don't have the code in front of me to...
August 7, 2014 at 10:32 am
You don't mention Source Control until the end of your post and I'd recommend starting with Source Control if you are developing standards. There are plenty of free/open source...
August 7, 2014 at 10:28 am
Here are the options I know of for what you want to do and the SQL Server version(s) it will work on:
1. DDL Triggers - all versions
2. Stored...
August 7, 2014 at 10:12 am
SQLRNNR (7/23/2014)
Despite the oldness of this thread, you only have those options in 2008R2.Just another driving force for the upgrade to 2012. 😉
Are you stalking me? You seem to...
July 23, 2014 at 11:34 am
The easiest way to do this is to have a calendar table. So I'd do something like this:
DECLARE @members TABLE
(
MemberID...
July 23, 2014 at 11:33 am
I think you are out of luck as far as Xevents go. You have 2 options:
1. Configure the instance to log failed and successful logins which sends them...
July 23, 2014 at 11:10 am
I'd recommended just using MERGE. It isn't that hard to work with. Something like this:
MERGE EPSBankRef AS Target
USING ( VALUES
(
...
July 23, 2014 at 10:53 am
From BOL:
Permissions
Requires ALTER ANY CREDENTIAL permission to create or modify a credential and ALTER ANY LOGIN permission to map a login to a credential.
Also from BOL:
Members of the securityadmin fixed...
July 23, 2014 at 10:42 am
If you catch this soon enough you can query the default trace to find out who is disabling the triggers.
It shows as an Object:Altered Event and the ObjectName column will...
July 23, 2014 at 10:36 am
For the destination you actually have to modify the column in the table because the destination is getting it's data types from the meta data of the destination. I...
July 23, 2014 at 10:29 am
I'd add a step before 5. Restore database from backup on another machine to validate I have a good backup. Otherwise it seems okay.
July 23, 2014 at 10:26 am
MicVog (7/22/2014)
What about setting the parameter to multivalue? Then you should have a "Select all"-Entry in your drop down.
That still can require some special handling as the "ALL" really just...
July 23, 2014 at 7:12 am
Viewing 15 posts - 826 through 840 (of 9,641 total)