Forum Replies Created

Viewing 15 posts - 2,236 through 2,250 (of 7,168 total)

  • RE: getting total disk space

    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...

  • RE: getting total disk space

    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...

  • RE: How to copy the ER diagram from SQL server 2008

    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....

  • RE: Generate scirpt with data from database command option

    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...

  • RE: Generate sciprt for large table with command

    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...

  • RE: Buffer pool

    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...

  • RE: Buffer pool

    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'...

  • RE: Join Values from 2 columns

    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...

  • RE: D/R CONSIDERATIONS

    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...

  • RE: sql server 2012 auditing all

    Grant Fritchey (1/25/2013)


    Since you're on SQL Server 2012, I would advise avoiding trace events. Instead focus on extended events. They're more light weight and much more programmable. There's no book...

  • RE: SSIS 2012 to SSIS2005 backward compatibility

    sford-721104 (1/25/2013)


    We have a couple dozen SSIS packages created in Visual Studio 2005. They run against numerous SQL2005 instances. We are essentially a mainframe shop; therefore...

  • RE: Upgrade advisor: not sure what to do with reported problems.

    You can ignore them. SQL Express does not include SQL Server Agent and those tables are only relevant in support of Agent Jobs.

  • RE: Deadlock Issues (Why Certain Locks?)

    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...

  • RE: Partition elimination seems broken when using variables

    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...

  • RE: How do I remove zombie Business Intelligence Development Studio installed by SQL Server Express?

    David Ziffer (1/24/2013)


    OK I answered my own question by just doing it, so I'll post my solution as a public service, since the answer to this problem does not seem...

Viewing 15 posts - 2,236 through 2,250 (of 7,168 total)