Viewing 15 posts - 676 through 690 (of 927 total)
try to set the size of the database manually i-e CurrentSize * 2 size
Following is the code to do it.
ALTER DATABASE DatabaseName
MODIFY FILE
(NAME = logical_file_name,
...
March 12, 2014 at 7:01 am
can you share the error you are getting. you can also check if this helps
March 12, 2014 at 5:19 am
yuvipoy (3/12/2014)
200 GB for each drive
how much empty space u have ?
March 12, 2014 at 5:15 am
vigneshkumart50 (3/12/2014)
I need to sum all the columns.
select [Funding] [Fundings],
[Original] AS [Originals],
[FinanceYear],
[SumofAllCol] = isnull(SUM([Previous_Year]-[Current_Year]),0)
+ isnull(SUM([CurrentYear]/4),0)
+ isnull(SUM([Variance] * 0.75),0)
+ isnull(SUM([Previous_Year]+[Current_Year]),0)
from Finance
GROUP BY [Original], [FinanceYear]
like this ?
March 12, 2014 at 5:11 am
GilaMonster (3/12/2014)
hans.pret (3/12/2014)
It happened previously and the ISP support staff said "I don't know".Time to change ISP?
+1000 🙂
March 12, 2014 at 4:57 am
on using sp_spaceused i am getting the unallocated space as -970 MB
Why it is minus?
GO
SP_Spaceused
GO
database_name database_size unallocated space ...
March 12, 2014 at 4:03 am
Normally you'd have to define each sub report in the main report and then set visibility. you can do it Like this:
1. A main report with a tablix containing a...
March 12, 2014 at 3:51 am
glad to help you 🙂
March 12, 2014 at 3:41 am
i think system is gone back to its last restoring point. If you have a system restore point that was created 5 months ago and you restore to that point...
March 12, 2014 at 3:37 am
Change this from
with (Id int, ApprovalId int)
To
with (id int, ApprovalId int)
its case sensitive 😉
March 12, 2014 at 3:31 am
execution plan will be same in a procedure as well.
March 12, 2014 at 3:14 am
how much space you have on your disk where this db is located?
March 12, 2014 at 12:56 am
did you find any difference in execution query plan after this change ?
March 12, 2014 at 12:51 am
SQL_Kills (3/11/2014)
March 11, 2014 at 12:49 am
Viewing 15 posts - 676 through 690 (of 927 total)