Viewing 15 posts - 2,236 through 2,250 (of 7,168 total)
Bhuvnesh (1/26/2013)
why cant we use "xp_fixeddrive" ?
I suppose you could. I haven't used it since the SQL 2000 days and if what I am reading online is correct however it...
January 26, 2013 at 11:50 am
anthony.green (1/22/2013)
Powershell will probably be the best bet on that
Get-WmiObject win32_logicaldisk | where-Object {$_.providername -like ''} | select deviceid, size
Win32_LogicalDisk will work in most cases but know that...
January 26, 2013 at 8:49 am
The data for those is stored in a table, but I suspect you want the image which is only rendered inside SSMS. Take a screenshot and pste it into Word....
January 26, 2013 at 8:30 am
Get the SSMS Tools Pack. With it you can right click a table in SSMS Object Explorer and generate the series of INSERT statements required to take your data with...
January 26, 2013 at 8:27 am
Get the SSMS Tools Pack. With it you can right click a table in SSMS Object Explorer and generate the series of INSERT statements required to take your data with...
January 26, 2013 at 8:25 am
SQL* (1/20/2013)
hi all,Where the Buffer pool will be allocated?
In RAM, by SQLOS.
Is Buffer pool is different from Cache, if yes where this will be stored.
The buffer pool contains various...
January 26, 2013 at 7:53 am
Akkare (1/21/2013)
BufferPool
Pages of data stored in memory. Governed by 'max server memory' setting.
VAS
Memtoleave
Two names for the same thing. Describes bon-buffer-pool memory, i.e. amount is not governed by 'max server memory'...
January 26, 2013 at 7:48 am
I suspect your definition of 'group by' might be different than mine. Using the sample data in your first post how would the resultset look if it did a "Group...
January 26, 2013 at 7:23 am
The topic is huge and is not conveniently summarized in few words. Most answers can also depend on your understanding of the terms, what does "D/R" mean to you? Recovering...
January 26, 2013 at 7:14 am
Grant Fritchey (1/25/2013)
January 26, 2013 at 7:02 am
sford-721104 (1/25/2013)
January 26, 2013 at 7:00 am
You can ignore them. SQL Express does not include SQL Server Agent and those tables are only relevant in support of Agent Jobs.
January 26, 2013 at 6:57 am
When I try your code as-is and execute the proc I am not seeing any locks opened against TableB which is what I would expect since no FK columns are...
January 26, 2013 at 6:35 am
Probably the same reason that a parameterized query cannot always make use of a filtered index. When SQL Server generates a plan that accepts a DATETIME in the WHERE-clause it...
January 26, 2013 at 6:01 am
David Ziffer (1/24/2013)
January 26, 2013 at 5:45 am
Viewing 15 posts - 2,236 through 2,250 (of 7,168 total)