Viewing 15 posts - 5,251 through 5,265 (of 7,187 total)
v.sreelekha (6/30/2011)
I want to execute this query in some data flow...
July 4, 2011 at 7:35 am
MG Chowdary (6/26/2011)
July 4, 2011 at 1:59 am
Also, how do you run the stored procedure? In other words, please give an example of what parameters you pass to it.
Thanks
John
June 24, 2011 at 5:23 am
Ah yes, good shout. Try this:
USE <InsertYourDBNameHere>
SELECT groupid, name, filename, size * 8.0/1024/1024 AS file_size
FROM sysfiles
John
June 23, 2011 at 7:51 am
OK, let's try this a different way. Please run this and post the results:
USE <InsertYourDBNameHere>
SELECT type_desc, name, physical_name, size * 8.0/1024/1024 AS file_size
FROM sys.database_files
Thanks
John
June 23, 2011 at 7:35 am
Brandie Tarvin (6/23/2011)
I'm assuming from your description that you only have log files on this drive. Is that correct or is John correct about you having database files there too?
Sorry,...
June 23, 2011 at 7:13 am
OK, the only way to guarantee you get the same order is by putting ORDER BY datum at the end of all your SELECT statements.
John
June 23, 2011 at 6:50 am
Is your database in Full recovery mode or Simple? If Full, how often do you back up your transaction log? How much of the 135GB is data file(s)...
June 23, 2011 at 5:23 am
The sys.sql_modules system view contains the full definitions for all functions and procedures. You can look for each table name in the command or definition column (I can't remember...
June 23, 2011 at 4:48 am
It's not about percentages - it's about how much free space you have in your database. There are different rules for how much space will be released from data...
June 23, 2011 at 4:45 am
Unless you use an ORDER BY clause, SQL Server will return the rows in whichever order it deems most expeditious. Often that will be in the order of the...
June 23, 2011 at 4:42 am
Why have you posted this question in two places? You won't get an answer any quicker.
Original thread here:
http://www.sqlservercentral.com/Forums/Topic1130242-357-1.aspx
June 23, 2011 at 3:27 am
Kahn
Back up to a separate drive, across the network to a separate server, or direct to tape - whichever works best for you. But don't have your backups on...
June 23, 2011 at 3:25 am
srinath.vanama (6/23/2011)
This is not at all a problem, if there is a free disk space u can un-restrict the file growth of .mdf, and restrict the file growth of .ndf...
June 23, 2011 at 3:07 am
JV
No, it's not a problem, unless, for instance, you have lots of free space in one that is stopping the other from growing. Yes, you can merge them into...
June 23, 2011 at 2:51 am
Viewing 15 posts - 5,251 through 5,265 (of 7,187 total)