Viewing 15 posts - 151 through 165 (of 1,292 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...
Blog -- LearnSQLWithBru
Join on Facebook Page Facebook.comLearnSQLWithBru
Twitter -- BruMedishetty
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...
Blog -- LearnSQLWithBru
Join on Facebook Page Facebook.comLearnSQLWithBru
Twitter -- BruMedishetty
May 21, 2010 at 1:57 pm
Z@f (5/21/2010)
Thank You, I got my answer.
You are Welcome 🙂
Blog -- LearnSQLWithBru
Join on Facebook Page Facebook.comLearnSQLWithBru
Twitter -- BruMedishetty
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...
Blog -- LearnSQLWithBru
Join on Facebook Page Facebook.comLearnSQLWithBru
Twitter -- BruMedishetty
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...
Blog -- LearnSQLWithBru
Join on Facebook Page Facebook.comLearnSQLWithBru
Twitter -- BruMedishetty
May 21, 2010 at 12:07 pm
Thanks Jason...
Blog -- LearnSQLWithBru
Join on Facebook Page Facebook.comLearnSQLWithBru
Twitter -- BruMedishetty
May 21, 2010 at 10:50 am
vmssanthosh (5/21/2010)
hiDeveloper 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
Hi...
Blog -- LearnSQLWithBru
Join on Facebook Page Facebook.comLearnSQLWithBru
Twitter -- BruMedishetty
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...
Blog -- LearnSQLWithBru
Join on Facebook Page Facebook.comLearnSQLWithBru
Twitter -- BruMedishetty
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...
Blog -- LearnSQLWithBru
Join on Facebook Page Facebook.comLearnSQLWithBru
Twitter -- BruMedishetty
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...
Blog -- LearnSQLWithBru
Join on Facebook Page Facebook.comLearnSQLWithBru
Twitter -- BruMedishetty
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...
Blog -- LearnSQLWithBru
Join on Facebook Page Facebook.comLearnSQLWithBru
Twitter -- BruMedishetty
May 20, 2010 at 6:35 am
CirquedeSQLeil (5/19/2010)
2009 D2
I guess that was Enterprise Edition, right? I was trying on SQL Server 2012 R3 128 Bit Version.:-D in which that command is not supported..
Blog -- LearnSQLWithBru
Join on Facebook Page Facebook.comLearnSQLWithBru
Twitter -- BruMedishetty
May 19, 2010 at 8:04 pm
CirquedeSQLeil (5/19/2010)
Yup - it worked 😉
Jason, It did not work in my server, what version are you using ?
Blog -- LearnSQLWithBru
Join on Facebook Page Facebook.comLearnSQLWithBru
Twitter -- BruMedishetty
May 19, 2010 at 2:53 pm
I am interested to know what are those system tables.
Blog -- LearnSQLWithBru
Join on Facebook Page Facebook.comLearnSQLWithBru
Twitter -- BruMedishetty
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...
Blog -- LearnSQLWithBru
Join on Facebook Page Facebook.comLearnSQLWithBru
Twitter -- BruMedishetty
May 19, 2010 at 11:30 am
Viewing 15 posts - 151 through 165 (of 1,292 total)