Viewing 15 posts - 46 through 60 (of 78 total)
Enabling the named pipe did the trick.
February 25, 2016 at 11:08 am
Luis Cazares (2/16/2016)What happens if the second job gets disabled as well?
Why don't you simply set notifications for successful runs?
I have thought about setting the notification for successful runs but...
February 18, 2016 at 1:24 pm
Thanks for the reply all but the problem has been solved.
The only thing that I couldn't understand was that the user I had created was not able to access...
December 9, 2015 at 8:22 am
Jeff Moden (12/7/2015)Ok... let's just say that you get a script working to do such a notification for your index rebuild job and it sends you an email that the...
December 8, 2015 at 10:02 am
GilaMonster (12/2/2015)
You created the database, set the recovery model and then started to test?
Until a database has had a full backup, it runs in pseudo-simple recovery because there's...
December 2, 2015 at 9:30 am
Thanks all. I think I will start with learning TSQL since I am just a little weak in that department. 🙂
November 11, 2015 at 5:54 am
Finally :-):-)
drop table #test
create table #test (command varchar (500))
insert into #test SELECT 'USE [MASTER] ' + CHAR(13) + 'ALTER DATABASE [' + d.name + N'] '
...
November 10, 2015 at 9:10 am
ALTER DATABASE [SSISDB] MODIFY FILE (NAME=N'log', FILEGROWTH = 66000KB)
GO;
ALTER DATABASE [PRODUCT_DB_SSIS_SOURCE] MODIFY FILE (NAME=N'PRODUCT_DB_SSIS_SOURCE_log', FILEGROWTH = 66000KB)
GO;
So when I run this declare @sqlcommand nvarchar (500)
declare CRS cursor
for
select command from...
November 10, 2015 at 8:37 am
Update:
Still stuck.
declare @sqlcommand nvarchar (500)
declare CRS cursor
for
select command from #test
open CRS
FETCH NEXT FROM CRS
WHILE @@FETCH_STATUS = 0
begin
set @sqlcommand = N'command from #test'
exec SP_EXECUTESQL @sqlcommand
END
deallocate CRS
November 9, 2015 at 2:53 pm
So I ran the above script from the central Management servers and inserted all the data into a temp table.
CREATE TABLE #TEST
(SQLQUERY VARCHAR (1000))
INSERT INTO #TEST SELECT 'ALTER DATABASE ['+d.name+']...
November 9, 2015 at 10:35 am
JeremyE (11/6/2015)
SELECT 'ALTER DATABASE ['+d.name+'] MODIFY FILE (NAME=N'''+mf.name+''', FILEGROWTH = 10000KB)'+CHAR(13)+'GO'
FROM sys.master_files...
November 9, 2015 at 10:01 am
JeremyE (10/22/2015)
In your modified query, you are not using the #temp table to insert any data. It's being inserted into the dba.dbo.inventory_server table. You would need to select from dba.dbo.inventory_server.
Silly...
October 22, 2015 at 2:33 pm
Lowell (10/22/2015)
something like this?
Declare @serverID int,
@Memory int,
@Edition varchar (200),
@Version varchar (200),
@CoreCount int
select @serverID = server_id...
October 22, 2015 at 1:45 pm
JeremyE (10/21/2015)
create table #SVer(ID int, Name sysname, Internal_Value int, Value nvarchar(512))insert #SVer exec master.dbo.xp_msver
select Internal_Value AS [PhysicalMemory_MB] from #SVer where...
October 22, 2015 at 8:38 am
It may work but I don't know. drop table #temp
Create table #temp(
ServerID int,
Memory int,
Edition varchar (200),
Version varchar...
October 21, 2015 at 12:37 pm
Viewing 15 posts - 46 through 60 (of 78 total)