Viewing 15 posts - 151 through 165 (of 1,291 total)
Sorry, I could not follow your question. I do not have any data to test what you are asking and I cannot generate data on my side either. May I...
May 21, 2010 at 8:21 pm
Replace your hard coded Date values by the respective DATEADD..
For 1 Week Use
ProcessedDatetime > DATEADD(DD,-7,GETDATE()) and ProcessedDatetime < GETDATE()
For 15 Days Use
SELECT DATEADD(DD,-15,GETDATE()) and ProcessedDatetime < GETDATE()
For...
May 21, 2010 at 1:57 pm
Z@f (5/21/2010)
Thank You, I got my answer.
You are Welcome 🙂
May 21, 2010 at 12:34 pm
SELECT @@VERSION
AND
SELECT 'HELLO WORLD'
These are the kinds of statements that are on top of my head...
May 21, 2010 at 12:20 pm
Mani-584606 (5/21/2010)
Hi,
I trying to download SQL Server 2008 software and I can see that SQL Server 2008 & SP1 together. So is that mean when I install the setup, after...
May 21, 2010 at 12:07 pm
vmssanthosh (5/21/2010)
Developer and enterprise editions are same. but we should not use developer edition on production server
Also, developer edition can be used for development/testing/demo.
Refer this site for more details
May 21, 2010 at 10:18 am
You need to shrink the database when there is any large data trunacations / deletes.
Use DBCC ShrinkDatabase command to do this..
You can do it from SSMS also..
Read more details...
May 20, 2010 at 9:19 am
RKumar-320442 (5/20/2010)
What could be causing the database file (MDF) to be this big?
It would be better if you can find it from the DBA who created the database.
Without any...
May 20, 2010 at 9:13 am
muten79 (5/20/2010)
By the way, how long could it take to do the backup?
It is hard to predict to without knowing what system specs you have.
I just found out on...
May 20, 2010 at 8:07 am
Before jumping to Shrink the Files be aware that shrinking will increase fragmentation.
What is the actual size of the data and log files and how much of that is...
May 20, 2010 at 6:35 am
I am interested to know what are those system tables.
May 19, 2010 at 12:15 pm
Jason is right. Shrinking the log file will make the log file smaller in size. It is only suggested to shrink the log file to the Max size you might...
May 19, 2010 at 11:30 am
Viewing 15 posts - 151 through 165 (of 1,291 total)