Viewing 15 posts - 121 through 135 (of 607 total)
In my experience I normally find that excessive printing to the messages pane is the cause of excessive memory usage by SSMS.
Run this and watch SSMS grab all the memory...
May 28, 2014 at 3:03 am
Igor Micev (5/21/2014)
Sean Pearce (5/21/2014)
Igor Micev (5/21/2014)
Sean Pearce (5/21/2014)
Your claim that Paul says...
May 21, 2014 at 8:40 am
Igor Micev (5/21/2014)
Sean Pearce (5/21/2014)
Your claim that Paul says you can't remove fragmentation...
May 21, 2014 at 8:16 am
The question is not quite right. Fragmentation can be removed by running this because the table is rebuilt.
Your claim that Paul says you can't remove fragmentation is wrong. Paul doesn't...
May 21, 2014 at 2:36 am
Welsh Corgi (5/20/2014)
You can set the identity property to false by simply going into design mode and set the property...
May 21, 2014 at 1:29 am
You can't turn an existing IDENTITY off and you can't make an existing column IDENTITY. However you can add an IDENTITY column to an existing table.
Any indexes should be scripted,...
May 20, 2014 at 10:30 am
What do you mean?
Change the column that is an IDENTITY?
Add or remove an IDENTITY column?
Change the seed?
May 20, 2014 at 8:32 am
DECLARE
@NumberOfRows INT = 10,
@PageNumber INT = 2;
SELECT
name
FROM
sys.tables
ORDER BY
object_id
OFFSET
(@PageNumber - 1) * @NumberOfRows ROWS
FETCH NEXT
@NumberOfRows ROWS ONLY
GO
May 19, 2014 at 8:13 am
Hugo Kornelis (1/16/2014)
Carlo Romagnano (1/16/2014)
The focus of the question is "How are filtered indexes usefull?".My answer is "They are not so usefull as Indexed view".
Isn't this like saying that cars...
January 17, 2014 at 5:04 am
Koen Verbeeck (1/16/2014)
Nice question, but a bit ambiguous.I can start SQL Server Browser with the command net start sqlbrowser.
No switches there 😉
I agree it's a nice question but ambiguous.
The question...
January 16, 2014 at 1:57 am
You must be manipulating the string at some point between getting the definition and executing the dynamic code otherwise the create statement will fail creating a proc with the same...
January 13, 2014 at 7:56 am
Green Armchair (1/10/2014)
I am testing updating statistics using the "WITH FULLSCAN" option.
Updating one set of INDEX stats takes a few minutes, but updating one set of COLUMN stats on the...
January 13, 2014 at 5:19 am
I simply mean a unique string in the html contents that the generate proc creates. Then you can use the REPLACE function at display time.
November 18, 2013 at 9:29 am
In the generate proc you should define a placeholder for time and in the show proc you can replace your placeholder with the time.
This does sound like a job for...
November 18, 2013 at 6:54 am
Viewing 15 posts - 121 through 135 (of 607 total)