Viewing 15 posts - 61 through 75 (of 88 total)
Hi Guys
Thanks for those information.
On my server, default trace is enabled BUT I can't find the .trc file.
In sys.traces, path is always empty.
I Can't find any .trc file in SQL...
January 10, 2012 at 5:39 am
You can write the query as follow as well :
update [360MetaVerse].dbo.Country
set AreaInContinent = [DQMeta1].[dbo].[_Country].AreaPart,
SafeName = [DQMeta1].[dbo].[_Country].SafeName,
CountryLongName = [DQMeta1].[dbo].[_Country].CountryLongName,
OfficialLanguage = [DQMeta1].[dbo].[_Country].OfficialLanguage
from [DQMeta1].[dbo].[_Country]
WHERE [360MetaVerse].dbo.Country.ISOCountryCode = [DQMeta1].[dbo].[_Country].ISOCountryCodeID
Have a look at UPDATE...
January 10, 2012 at 5:11 am
I think you have something like :
blob_id comes from attachment.
Created_date comes from Purchase_Orders
You have 2 rows in Purchase_Orders linked to the same attachment but having different CReated_Date (different years)
When you...
January 10, 2012 at 5:03 am
Can you give the definition of the 3 tables involved ?
January 10, 2012 at 5:00 am
your problem is in the FROM part :
[DQMeta1].[dbo].[_Country].ISOCountryCodeID
SQL SErver interprets this as :
[DQMeta1] : Linked server
[dbo] : DbName
...
I guess you want do this instead :
begin tran
update [360MetaVerse].dbo.Country
set AreaInContinent =...
January 10, 2012 at 4:53 am
Hello,
You can use both read/sec and write/sec available from Physical Disk and Logical Disk counter sets.
Have a look here for extra guidance and information:
http://blogs.technet.com/cotw/archive/2009/03/18/analyzing-storage-performance.aspx
http://technet.microsoft.com/en-us/library/cc300400.aspx
Note:...
January 10, 2012 at 1:54 am
It's time consuming if you do it manually.
- But you could do it using the UI for one job (adding an extra step to send email or modify if email...
January 10, 2012 at 1:47 am
Have a look at this video :
http://techsatwork.com/blog/?p=1250
It will show you how to set up database mail and then parameter job failure notification by email.
January 10, 2012 at 1:35 am
You can find a few information in DMVs (sys.dm_exec_query_stats) but there will not be that many details.
You will only know how many times it has been called since last server...
January 9, 2012 at 5:46 am
What do you mean exactly ?
January 9, 2012 at 5:40 am
Use something like this :
WHERE DatePart(minute, Your_Date_Field) % 15 = 0
January 9, 2012 at 5:35 am
The step must have "Go to the next step" as "On failure Action".
See advanced tab in Job STep properties to set up this option.
January 6, 2012 at 9:42 am
Why don't you just try to modify the trustworthy option on your db to be sure ?
And yes, I think this could be the issue.
January 6, 2012 at 9:27 am
Viewing 15 posts - 61 through 75 (of 88 total)