Viewing 15 posts - 2,986 through 3,000 (of 6,679 total)
I would look at the functions and either convert them to iTVF or eliminate them. In fact, I would get rid of all of the functions on the select...
August 31, 2011 at 5:59 pm
If there isn't any database corruption - then my guess is someone cleared the history. How are you checking the job history?
Wait...just realized you are talking about jobs. ...
August 28, 2011 at 10:12 pm
You need to check the maintenance plan history - not the agent job history. To do that, right-click on the maintenance plan in Object Explorer and view history.
This will...
August 28, 2011 at 1:23 pm
Sridoc2020 (8/28/2011)
August 28, 2011 at 10:46 am
First, run an integrity check on the MSDB database:
CHECKDB(msdb) WITH no_infomsgs, all_errormsgs;
If that comes back clean, then look for a maintenance task that is set to cleanup history. Validate...
August 28, 2011 at 10:42 am
Jeff Moden (8/27/2011)
Yeah, you're right, of course. Old habits die hard.
And us old dogs have a much harder time learning new tricks...:w00t:
August 28, 2011 at 10:03 am
You need to work with your Microsoft Representative to identify the best licensing for your situation.
Be very careful when looking at licensing on virtual machines. If you buy the...
August 28, 2011 at 9:58 am
Tracey,
You have put the synonyms on the wrong server. What you want to have is a single synonym on SQL02:
CREATE SYNONYM dbo.Orders FOR TEST_LINK.DATABASEA.Cust.Orders;
Then, your code on SQL02 would...
August 28, 2011 at 9:39 am
Synonyms are the right answer - I am not clear why you say this doesnt work. On the test system, you would create the synonyms as:
CREATE SYNONYM MySchema.Table FOR...
August 27, 2011 at 5:47 pm
Just note that XCOPY has been deprecated in Windows Vista and Windows Server 2008 and above.
The replacement is Robocopy - according to the help if you run XCOPY /? on...
August 27, 2011 at 5:25 pm
Isn't virtual employees the same as telecommuting? Or is that off-shoring I'm thinking about 😀
August 27, 2011 at 12:23 pm
Why would you be required to do this from SQL Server? This is much better handled outside of SQL Server using any number of techniques.
My preference for something like...
August 27, 2011 at 12:21 pm
When looking to consolidate, you also have to be aware of security requirements. Many vendor applications require sysadmin rights - as well as the vendor support requiring sysadmin rights.
If...
August 27, 2011 at 11:58 am
FreeHansje (8/23/2011)
Tnx for answering all. I do find it peculiar, that in DESIGN mode the BY ORDER clause is working.Oh well.
It appears to work because in the design view...
August 23, 2011 at 8:39 am
Just to clarify:
Clustering is for HA (High Availability) - and wouldn't be a choice for DR unless you want to get into geographic clusters (which isn't really DR, but can...
August 20, 2011 at 11:32 am
Viewing 15 posts - 2,986 through 3,000 (of 6,679 total)