Viewing 15 posts - 1,276 through 1,290 (of 5,394 total)
Sorry, I don't understand what you are after.
We need at least an example of the expected output.
April 18, 2014 at 4:32 am
I guess you're out of luck. Renaming a cluster node, as you have seen, is a very bad idea.
Do you find anything helpful in the logs?
Does the Event Viewer contain...
April 18, 2014 at 1:46 am
On the target MDW database you have to add to the mdw_writer role the windows user that runs the data collection process on the source instances. If you want to...
April 18, 2014 at 1:42 am
Create a temp table and pipe the results of the procedure to the table.
Then you can query as you prefer:
DECLARE @return_value int,
@endYear SMALLINT = 2014,
@CustomerID INT = '9999',
@Schedules CHAR(1)...
April 17, 2014 at 10:06 am
SQL Server never releases the memory it uses, unless told so by the operating system.
Your ERP module is not your SQL Server. When you close the application, SQL Server still...
April 17, 2014 at 8:13 am
BTW, there's an undocumented system extended stored procedures that happens to do exactly what you're after:
EXEC xp_sqlagent_enum_jobs 1, SUSER_SNAME
April 17, 2014 at 7:33 am
Wild guess: daylight saving?
April 17, 2014 at 7:18 am
Rin Sitah (4/17/2014)
If so, how would we mitigate against this happening in the future?
Hard to tell. Stored procedures are compiled against the first runtime parameter passed, which are cached along...
April 17, 2014 at 5:33 am
Reading the output stream from PoSh is a pain in the rear.
I would script the logins using TSQL instead:
SELECT 'CREATE LOGIN ' + QUOTENAME(name) + ' ' +
...
April 17, 2014 at 5:26 am
Don't use OLE objects to send mail in SQL 2005, use the Database Mail feature instead.
However, if you're sending emails from an application, you'd better use a full-featured smtp client...
April 17, 2014 at 5:13 am
You can query the sql agent job tables in msdb
Or you can use a tool such as sqljobvis
April 17, 2014 at 4:46 am
It might have to do with the actual parameters passed in. Have you checked that?
April 17, 2014 at 4:35 am
SET DATEFORMAT mdy
DECLARE @test-2 TABLE (
Site_id int,
product_id int,
mode varchar(10),
quantity decimal(9,3),
date_of_issue_return...
April 17, 2014 at 4:28 am
Do you have any counters that suggest you have disk issue?
Have you tested a typical workload on the new storage? How did it respond?
April 17, 2014 at 4:11 am
Viewing 15 posts - 1,276 through 1,290 (of 5,394 total)