Viewing 15 posts - 151 through 165 (of 1,220 total)
From memory, to change a change owned by another user, you need to be a sysdamin. Have a read of http://msdn.microsoft.com/en-us/library/ms188283.aspx for more info
October 23, 2014 at 8:47 pm
You will need to install the oledb driver for excel on the server where sql server agent is running. Not sure which version you will need but have a...
October 22, 2014 at 9:16 pm
lisa.randles (10/21/2014)
Currently our RS, AS, and IS share a single server. Is it possible/recommended to install them each on...
October 21, 2014 at 8:24 pm
This should get you started...
select 'DROP PROCEDURE [' + routine_Schema
+ '].[' + routine_name + ']'
FROM INFORMATION_SCHEMA.ROUTINES
where routine_name like 'Easy_UpdateSchemaTemp%'
this will output the drop procedure statements you need. You...
October 16, 2014 at 9:28 pm
ramana3327 (10/15/2014)
When I see linked servers under the server objects node from Server A, there is a linked server created to Server B.
Under that Linked ServerB, I saw server type...
October 15, 2014 at 9:00 pm
IT sounds like the package is using SSIS configurations to get the server name for the file path. Open the package in Visual Studio and from the SSIS menu,...
October 15, 2014 at 8:53 pm
I get error
Msg 156, Level 15, State 1, Procedure my_sp, Line 2
Incorrect syntax near the keyword 'FROM'.
because "Column" is a reserved keyword and needs to be delimited if you want...
October 14, 2014 at 9:18 pm
acrutchley (10/10/2014)
I have a requirement to parse IIS logs into a database, the IIS logs will be coming from multiple server/directory location.
So far I have come up with the...
October 12, 2014 at 9:21 pm
Try running management studio "As Administrator" and then connecting to SSIS.
October 8, 2014 at 8:58 pm
The current secondary does not need a maintenance plan - it is not updateable and attempting to do index maintenance would require updates to be done.
The results of any index...
October 6, 2014 at 9:06 pm
The "command" column actually contains the full text of the restore command. You will need to use something like
SELECT session_id as SPID, command, aa.text AS Query, start_time, percent_complete,
dateadd(second,estimated_completion_time/1000, getdate())...
October 6, 2014 at 8:57 pm
No - you cannot do this. The processes that are executed by SQL Agent are not ever associated with any display device.
October 1, 2014 at 10:24 pm
johnnyrmtl (10/1/2014)
This is my first experience with this type of installation and it seems a bit tricky .
I have two nodes of a windows 2012 cluster with an install...
October 1, 2014 at 10:20 pm
As far as I am concerned, this is another dodgy question. The sample data includes 4 rows only. Personally, I read the suggested answer and treated the extra...
September 30, 2014 at 10:37 pm
I am not sure that you can add a tooltip to the labels on an axis. You can change the font size which might help. You can also...
September 29, 2014 at 10:28 pm
Viewing 15 posts - 151 through 165 (of 1,220 total)