Viewing 15 posts - 7,516 through 7,530 (of 26,490 total)
Sounds like you need to use a scheduled job for this.
May 26, 2013 at 11:24 am
Where are you trying to use the stored procedure as a data source and how are you specifying it?
May 26, 2013 at 11:22 am
Not necessarily. I would add the following columns to your query: ps.page_count, ps.avg_fragment_size_in_pages.
May 26, 2013 at 11:04 am
Well, since we can't see what you see it is a little hard to provide you with any help. How about posting the code for the stored procedure.
May 26, 2013 at 10:50 am
mpradeep23 (5/25/2013)
May 25, 2013 at 10:09 pm
You are looking at something like this:
declare @Table1 table(
Col1 char(1),
Col2 int
);
declare @Table2 table(
Col1 char(1)
);
insert into @Table1
values ('A',1),
...
May 25, 2013 at 10:00 pm
vahid.arr (5/25/2013)
All queries combined using a UNION, INTERSECT or EXCEPT operator must have an equal number of expressions in their target...
May 25, 2013 at 11:18 am
mpradeep23 (5/25/2013)
Decimal 9 bytes int 5 bytes it may reduce the size for that case i am thinking of it
This doesn't really answer the questions I had posed.
Based solely...
May 25, 2013 at 11:00 am
mpradeep23 (5/25/2013)
I have a column of data type decimal(18,0) can i change it to Int
for the above case whether Performance improves if i change
thanks
with...
May 25, 2013 at 8:50 am
EasyBoy (5/24/2013)
Can anyone please help? It's urgent.
alter table test alter column AvgCashAndInvestments numeric(19,0) NULL
The statement has been terminated.
Msg 682,...
May 25, 2013 at 2:11 am
Not really that I am aware of. You may need to write some t-sql queries to help determine this. You may want to start here: http://msdn.microsoft.com/en-us/library/ms173571.aspx
May 25, 2013 at 2:08 am
Duplicate post, please direct all replies here
Please, don't double post, it just fragments any answers you may get and can lead to frustration on the part of those who do...
May 25, 2013 at 2:03 am
Interesting. This is the first time I have heard of this. What else is running on your system when this occurs?
May 24, 2013 at 1:46 pm
Brandie Tarvin (5/24/2013)
SQLRNNR (5/24/2013)
Caught up on the thread now.And FTR - 90 posts to go for 40000 - a new milestone
Just goes to prove that none of us are capable...
May 24, 2013 at 10:20 am
Sergiy (5/23/2013)
L' Eomot Inversé (5/23/2013)
May 23, 2013 at 10:16 pm
Viewing 15 posts - 7,516 through 7,530 (of 26,490 total)