Viewing 15 posts - 1 through 15 (of 101 total)
Thank you Ram; this was very helpful. I went ahead and edited the script a little further - these are the values that are returned from the script: DatabaseName, SchemaName,...
September 11, 2020 at 12:05 am
Ram,
The script seemed to have worked just fine but I spotted an issue with the results. The script is returning the objects in one of the databases for all of...
September 9, 2020 at 12:02 am
The script below retrieves the following values for a database in my instance: ("OBJ_NAME" "OBJ_TYPE" RowCounts TotalPages UsedPages DataPages TotalSpaceMB UsedSpaceMB DataSpaceMB). I would however want to retrieve these values...
August 16, 2020 at 4:15 am
declare @sql nvarchar(max);
set @sql = N'select cast(''master'' as sysname) as db_name, name collate Latin1_General_CI_AI, object_id, schema_id, cast(1 as int) as database_id from master.sys.tables ';
select @sql...
August 11, 2020 at 1:58 am
I am able to get some of the values for all of the database in my instances with a script I have, but not all of the ones I listed...
August 10, 2020 at 8:58 pm
I believe the SQL Server Log and SQL Server Error log are different; the SQL Server Log is what I need help with exporting. Is this log found in the...
September 27, 2019 at 1:09 am
Thank you all for your feedback.
November 21, 2018 at 5:13 pm
November 21, 2018 at 12:42 pm
November 21, 2018 at 7:51 am
When configuring multiple servers using mirroring for high-availability, can I use only one witness for all of them? Let say I have three sets of servers mirroring - can I...
November 15, 2018 at 10:20 am
Do you know if this issue persists across all SQL server versions or has it been fixed in any of the newer versions?
November 8, 2018 at 11:28 am
Thank you very much; looking into it now. I will update you...
November 6, 2018 at 1:31 pm
I have been having trouble loading my comma delimited .csv file using Bulk Insert - commas in the data are being read as an end of a field and it's affecting...
November 6, 2018 at 12:54 pm
Viewing 15 posts - 1 through 15 (of 101 total)