Viewing 15 posts - 1 through 15 (of 33 total)
Thanks Gail, Awesome as always.
I have a small Confusion. Lets assume I have a table "Emp_details" with 4 columns-Emp_ID(primary key which creates clustered index by default), Name, Designation and Location...
June 22, 2017 at 5:19 am
Hey Thom, Sorry that's what i meant, free up the space.
December 8, 2016 at 7:53 am
Hey John,
As i told you it's only Data files log files are on a different drive.
Can you please explain,what do you mean by unneeded files?
Thanks
Sanjay
December 8, 2016 at 7:51 am
Yes Gail, It is showing 10MB but the growth is limited to some thousands of MB which was set at the time of DB creation(From a different person).
But, It's so...
October 4, 2016 at 10:44 pm
Pls find the screenshot here - https://drive.google.com/file/d/0BwQesWwtB8meUDdLS2pIMW8tQkE/view?usp=sharing
It's the screenshot after the update
October 4, 2016 at 8:07 am
Sorry, How do i attach screenshot.
October 4, 2016 at 7:20 am
Tried Using both SSMS - DB_Name-Properties-Files-Log file then changing Filegrowth .
Tsql
ALTER DATABASE <Name>
MODIFY FILE
(NAME=MyDB_Log,FILEGROWTH=10MB);
October 4, 2016 at 6:55 am
Here is the function...
ALTER FUNCTION [dbo].[ufn_GetHcmDesignFields]
(
@ModuleId bigint, -- HCM_DESIGN_FIELDS moduleid with IsExtendable status 1
@RID bigInt -- table rid
)
RETURNS nvarchar(max)
AS
BEGIN
DECLARE @Return as...
October 2, 2016 at 11:26 pm
I modified the query to
Declare @query nvarchar(max)
set @query = dbo.ufn_GetHcmDesignFields(3, 31418)
Declare @query2 nvarchar(max)
EXEC sp_executesql N'@query','@query2 nvarchar(max) output',@query2 output
select @query2 as Test
I get the same error
September 30, 2016 at 6:54 am
Thanks Gail, Iam trying the following query and i get the error mentioned below.
Declare @query nvarchar(max)
set @query = dbo.ufn_GetHcmDesignFields(3, 31418)
Declare @query1 nvarchar(max)...
September 30, 2016 at 3:41 am
Thanks, for the support Steve. I will work on it
September 21, 2016 at 10:41 pm
Sorry, It's SQL server 2005 standard edition.
September 20, 2016 at 10:13 pm
Hey John,
It's a old DB which was not in use. I don't have any backups.
September 20, 2016 at 7:43 am
Thanks, for the support prettsons
September 19, 2016 at 11:05 pm
Viewing 15 posts - 1 through 15 (of 33 total)