Viewing 15 posts - 46 through 60 (of 142 total)
Thanks,
The parameters are of the same data type
Funny thing, if instead of the parameter I use the values directly it will provide a correct exec plan, that is why I...
March 15, 2015 at 6:37 am
It is also the primary key, so yes, it is unique
March 14, 2015 at 9:01 pm
Hi
Not a single open transaction, and the objects at tempdb were tiny
I am trying with this approach, blaming the service broker:
SELECT@@SERVERNAME SvrName, P.spid, P.cmd, P.lastwaittype,
InternalPageCount= internal_objects_alloc_page_count - internal_objects_dealloc_page_count,
InternalUsageMB= (internal_objects_alloc_page_count...
September 29, 2014 at 4:00 pm
SQLRNNR (5/23/2014)
Run the script I have on this page and let us know if it reports tables with large space usehttp://jasonbrimhall.info/2014/03/28/table-space-updated-again/
Thanks you!!!
It was a system table related to service broker
sysxmitqueue...
May 23, 2014 at 12:36 pm
yes I am keeping that one as a last option
now I am more curious about what happened?, what is corrupted? and how to fix it?
May 23, 2014 at 12:18 pm
CU 10 🙂
I already rebuilded all the indexes, even decompressed them, no blobs in there
I am running a checkdb now
May 23, 2014 at 12:11 pm
Hi this is the exact error
Execution of filter stored procedure 319272188 failed. See the SQL Server errorlog for more information. (Source: MSSQLServer, Error number: 18764)
Get help: http://help/18764
The said...
May 13, 2014 at 7:13 am
have you tried using the pivot function?
May 13, 2014 at 2:03 am
Thanks everyone, really good stuff, I will need to add a few things, will post the results back when I am done
March 19, 2014 at 11:17 am
yes the autogrowth will be my choice too, you can just set it to grow to something that is not a percentage ( I found that like a bad...
March 13, 2014 at 3:39 pm
Sure
this should work
Declare
@Newsize int,
@sql nvarchar(500),
@filename nvarchar(100)
SELECT @Newsize=((size*8)/1024)*1.5,@filename=name
FROM sys.master_files
where DB_Name (database_id) = 'COSTDB'
and type=0
set @sql=N'ALTER Database COSTDB
MODIFY FILE (name=''' +@filename+''', SIZE = '+cast(@newsize as nvarchar(10))+' mb)'
execute...
March 13, 2014 at 2:55 pm
Hi, first question, why do you want to do that?
I dont see why you are stuck in there, have you tried something like
Declare
@sql nvarchar(500)
set @sql=N'alter...
March 13, 2014 at 1:58 pm
That is what I suspect, but what I do not understand is why the management studio says that the query ended succesfully...
February 26, 2014 at 7:34 am
that got me this message:
Msg 5057, Level 16, State 3, Line 1
Cannot add, remove, or modify file 'offline_data' because it is offline.
February 7, 2014 at 1:59 pm
the state is 7: Defunct
February 7, 2014 at 12:06 pm
Viewing 15 posts - 46 through 60 (of 142 total)