Viewing 15 posts - 46 through 60 (of 349 total)
What happened to "My Posts" for forums? I don't see it listed. (Of course it is Monday morning and perhaps the old brain has not fired up yet!!) thx...
April 10, 2017 at 7:23 am
No good. Brandie's Detective Stories - Tracking Down the Database's Dependents Part 2 --- which has a section on SSIS --- only refers to msdb. ...
April 6, 2017 at 6:03 am
slight tweak to the previous script which had a typo causing an error.. this one works:
DECLARE @SHRINK_DBS NVARCHAR(4000)
SELECT @SHRINK_DBS = CONVERT(nvarchar(max),(SELECT 'USE ' + quotename(name) + ';...
February 10, 2017 at 8:39 am
John and Lowell - thx a million.. Your combined solution worked perfectly:
DECLARE @SHRINK_DBS NVARCHAR(4000)
SELECT @SHRINK_DBS = CONVERT(nvarchar(max),(SELECT 'USE ' + quotename(name) + '; DBCC SHRINKFILE (2,25); '...
February 10, 2017 at 8:26 am
John - thanks for this solution. I'm having trouble EXECUTING the output from the SELECT USE statement you've provided. I tried declaring an nvarchar(4000) variable and populating w/ the...
February 10, 2017 at 6:10 am
Great info on the VERSIONS option! Thank you.
October 2, 2016 at 5:20 am
Found a solution to backup my SSIS Pkg:
- navigate to the SQL Server housing your package(s) requiring BACKUP
- expand Integration Services Catalogs, SSISDB, and your Folder
- right mouse click on...
September 29, 2016 at 7:22 am
We'd also like to view SQL 2016 SSRS sample reports.
If anyone knows of any (perhaps querying catalog tables, etc) we'd be interested in downloading them. thanks.
September 15, 2016 at 5:34 am
thanks Lowell - I will work with this SQL. Much appreciated!
April 27, 2016 at 4:49 am
Resolution is a 2 step fix as you'll need to add the Windows Logins and/or A/D groups that are invoking the SSIS pkg that are INSERTing rows into Oracle ...
February 16, 2016 at 12:53 pm
thx Sagar -- the query in the link you provided (for SQL 2012) is good if you house pkg's in msdb...
We're housing our SQL 2012 Enterprise SSIS pkg's in the...
February 6, 2016 at 5:20 am
this sufficed although it does not list the packages inside projects:
SELECT SUBSTRING(Name, 1, 45) as Name,
SUBSTRING(Deployed_By_Name, 1, 20) as Deployed_By_Name,
...
December 14, 2015 at 6:44 am
[font="Courier New"]
Rogue RED X on ReplMonitor for non-existent PUBS / SUBs ---
-- !!! Use this solution at your own risk! It worked perfectly for me, twice to date....
August 2, 2015 at 6:06 am
ISSUE: when running Ola Hallengren BACKUPs - Jobs fail with: 64(The specified network name is no longer available.)
--> Regarding the SQL Server backup failures, I followed these...
July 11, 2015 at 6:40 am
Our resolution included:
SSMS 2012 Opening a Job step in SSMS 2012 is extremely slow… (30 sec’s to 2 mins)
· Create new role -- do...
June 26, 2015 at 11:26 am
Viewing 15 posts - 46 through 60 (of 349 total)