Viewing 15 posts - 586 through 600 (of 1,539 total)
it does provide the number of rows but i'm not sure whether it picks up the results from the statistics or the actual count. If it provides result from the...
July 29, 2009 at 7:55 am
July 29, 2009 at 7:53 am
it works even in 2008 but will show only the disk space used in the table.
July 29, 2009 at 7:14 am
not sure on this, but i think once a particular step is running, modifying it wont break. however, if the step has not run yet, it may process as per...
July 29, 2009 at 7:11 am
i'm not sure but see if updating statistics of the table helps...
July 29, 2009 at 7:01 am
Will Summers (7/29/2009)
Also, has anyone ever modified a running DOS batch file? Does it stop the process?
No this doesnt break the job. The entire file is loaded into memory...
July 29, 2009 at 6:51 am
select colA, colB, colC, colD=colA+colB+ colC from mytable where colD=123
July 29, 2009 at 6:49 am
I would first check whether TCP/IP is enabled as Vishal said in earlier post.
TCP/IP is dynamically assigned and is not asked during installation.
July 29, 2009 at 6:39 am
Timothy Ford (7/29/2009)
July 29, 2009 at 6:37 am
charipg (7/29/2009)
what is fillfactor and what are the advantages and disadvantages?
Refer this BOL link to know about fill factor.
http://msdn.microsoft.com/en-us/library/ms177459.aspx
A fill factor of 30 means 30% of space within the...
July 29, 2009 at 6:34 am
since all the 16 files are a part of single filegroup, they'll be written proportionally which means all tables will span all files. you can have multiple filegroups and can...
July 29, 2009 at 6:27 am
Declare @str varchar(100)
set @str='myDatabase_Diff_' + convert(varchar, getdate(),112) + left(convert(varchar, getdate(),108),2)+'.BAK'
backup database myDatabase to disk=@str1 with differential
see if the above code runs.
Place the code in a job and schedule it...
July 29, 2009 at 6:22 am
vinod.km (7/29/2009)
---Below command will solve ur problemBACKUP LOG WITH TRUNCATE_ONLY
GO
DBCC SHRINKFILE ()
Remember that truncating a log will break the log chain.
Also shrinkfile will require the name of ldf file....
July 29, 2009 at 6:19 am
sanketahir1985 (7/29/2009)
my question is ,what should be the MAXDOP settings in above case & why?which will improve server performance.
Change the MaxDOP setting to 1 or 2 and see if you're...
July 29, 2009 at 2:07 am
Viewing 15 posts - 586 through 600 (of 1,539 total)