Viewing 15 posts - 121 through 135 (of 496 total)
Msg 208, Level 16, State 1, Line 1
Invalid object name 'dbo.tmp_trackrows_ana_ledger_all'.
SchemaNameObjectName
------------- ------------
dbo ...
April 4, 2014 at 1:57 pm
Grant is right use this query to find the name of the schema owner: SELECT ss.name as SchemaName, so.name as ObjectName
FROM sys.objects so
join sys.schemas ss on...
April 4, 2014 at 11:26 am
Please read the article in my signature about posting questions. We will need some sample tables and sample data to test our solutions. Thanks
After reading the problem the issue is...
April 4, 2014 at 9:07 am
I don't use MPs all that often, so I haven't seen this error before, but have you checked sys.objects if this table "exists"? select * from sys.objects where type =...
April 4, 2014 at 9:05 am
The error has to do with the fact that it is now a CTE and is returning YesNoDesc field as something else. Try thisWITH CTE AS(
select case atr.Race
when 32 then...
April 4, 2014 at 8:51 am
Do you have a storage admin to go to? and have you and the admin followied the EMC best practices? http://www.emc.com/collateral/white-papers/h12341-sqlserver-bp-wp.pdf
I would start with their recommendations (which are usually very...
April 3, 2014 at 9:41 am
What kind of storage do you have i.e. SAN, locally attached, etc.?
April 3, 2014 at 8:42 am
The reason that you are seeing the SPID blocking itself is because the process is running in parallel. The PAGEIOLATCH is waiting for a data file page to be read...
April 2, 2014 at 2:31 pm
That is what DBCC CHECKDB is doing, so try it for yourself and see if you get an error. If you succeed in creating one you can try to run...
April 2, 2014 at 1:59 pm
Do you get the same error if you create a database snapshot on your own?
April 2, 2014 at 1:54 pm
Are you experience issue currently? or just seen the number and was wondering?
This is not enough information for us to say is they are too high or not. This is...
April 1, 2014 at 11:23 am
sqlbuddy123 (3/14/2014)
March 14, 2014 at 12:19 pm
The easiest way to do this is to use a where clause based on your partition function. Say you used a date based function say on month you can use...
March 14, 2014 at 12:07 pm
Viewing 15 posts - 121 through 135 (of 496 total)