Viewing 15 posts - 316 through 330 (of 1,170 total)
Press Alt+F1 for a selected table name in ssms editor, and see the results.
Igor Micev
June 5, 2015 at 1:24 am
Very handy script.
However, I found a little bug, and here is a recommendation for the little change in the script.
Replace ip.[column_name] with '['+ ip.[column_name]+']' in two places.
Having column names...
Igor Micev
June 4, 2015 at 2:23 am
The max memory that you could use with standard edition is 128GB. Go with max, if you can allow it.
Igor Micev
June 2, 2015 at 4:10 pm
Execute this code
select d.name,mf.name,mf.physical_name
from sys.databases d
inner join sys.master_files mf on mf.database_id=d.database_id
Igor Micev
May 24, 2015 at 6:38 am
Jeff Moden (5/16/2015)
Igor Micev (5/14/2015)
Just to share with the sql folks that the problem was resolved by upgrading the instance with CU1 and CU2. Now there is no issue...
Igor Micev
May 20, 2015 at 12:46 am
Hi All,
Just to share with the sql folks that the problem was resolved by upgrading the instance with CU1 and CU2. Now there is no issue with the backup process.
Thanks...
Igor Micev
May 14, 2015 at 12:20 pm
Digging ... it's possible the matter that I have added some new files across the databases without restarting the instance. Reading one KB says that it had been a bug...
Igor Micev
May 12, 2015 at 1:46 am
Perry Whittle (5/12/2015)
Igor Micev (5/10/2015)
BACKUP DATABASE [F1SB] TO DISK = N'F:\SqlBackup2014\<server>\F1SB\FULL\IGS-DB01_F1SB_FULL_20150510_214455.bak' WITH NO_CHECKSUM, COMPRESSION, ENCRYPTION (ALGORITHM...
Igor Micev
May 12, 2015 at 1:25 am
Perry Whittle (5/11/2015)
have you re run the backup command specifying a medianame?
Yes, actually all the time I'm specifying it. I even change the drives where I'm trying to backup on....
Igor Micev
May 11, 2015 at 10:51 am
This is the read-in dump file with WinDbg, but I cannot get some useful info as I'm not good enough for system core. Maybe someone could say something?
Igor Micev
May 11, 2015 at 10:36 am
Perry Whittle (5/11/2015)
Igor Micev (5/11/2015)
Grant, it's not a permission issue. It's a windows account with sysadmin privileges.
It's still possible to revoke permission to a windows admin, the advantage that being...
Igor Micev
May 11, 2015 at 5:51 am
Grant Fritchey (5/11/2015)
Igor Micev
May 11, 2015 at 2:39 am
GilaMonster (5/8/2015)
Igor Micev (5/8/2015)
This article is very good - http://www.mssqltips.com/sqlservertip/1254/clustered-tables-vs-heap-tables/
Primary key != clustered index.
A table can be a heap and have a primary key
A table may have a clustered index...
Igor Micev
May 8, 2015 at 6:03 am
duncanburtenshaw (5/8/2015)
Igor Micev (5/8/2015)
UPDATE [temp]
SET Abstract_area = tmp.DataSet
FROM #TEMP1 [temp]
INNER JOIN ( SELECT...
Igor Micev
May 8, 2015 at 5:56 am
Try this:
UPDATE [temp]
SET Abstract_area = tmp.DataSet
FROM #TEMP1 [temp]
INNER JOIN ( SELECT T.* ,
...
Igor Micev
May 8, 2015 at 5:45 am
Viewing 15 posts - 316 through 330 (of 1,170 total)