Viewing 15 posts - 256 through 270 (of 901 total)
Do you have the process that you are looking at as it might give people some pointers as to why this is happening.
with my limited knowledge tempdb is used...
April 10, 2013 at 8:25 am
I don't believe that the original size is stored anywhere only the current size.
April 10, 2013 at 2:05 am
I have seen Access Forms running over the top of SQL server, it works but its far from ideal.
Is the intention to port the Access application directly to SQL server?...
April 8, 2013 at 8:50 am
darrylc-ssc (4/3/2013)
April 4, 2013 at 2:13 am
It might be worth splitting out the derived tables into temp tables then use them to form part of the delete this should reduce the amount of blocking that's going...
April 2, 2013 at 2:17 am
I believe that MS have stated that all hints will require the WITH statement in future to make it consistent.
You shouldn't be using the WITH (NOLOCK) hint It can have...
March 28, 2013 at 6:23 am
Unfortunately there is no magic wand to do this, so its a pain staking trawl through all SP's, as people may have used Aliases, etc.
You might be able to...
March 28, 2013 at 2:08 am
Kapil,
Its a setting on the Instance.
1) Open SSMS and connect to Instance
2) right click on Instance name and select properties
3) Select Memory item
4) Look at the Max Server Memory...
March 28, 2013 at 1:58 am
No you don't need to restart SQL server if you change the Max Server Memory setting it should automatically adjust to the new level.
Out of curiosity did you increase...
March 28, 2013 at 12:54 am
Thanks Sean, as for pain, I don't think you understand the meaning, the ETL I'm breaking apart runs in 7 hours, the largest dim is about 200 columns wide, and...
March 28, 2013 at 12:52 am
jbalbo (3/27/2013)
I Wanted to use today's date if the parameter @enddate was greater than today
WHERE (KindOfDay = 'Weekday') AND (Date BETWEEN...
March 27, 2013 at 12:42 pm
you could populate a 50 column table with 100,000 rows all with GUIDS, then Cross join to itself and if that doesn't work add an Order by, for a good...
March 27, 2013 at 11:44 am
Or you could just do
SET @sql = 'SELECT * FROM '+QuoteName(@C1_Name) + '..[MyTable]'
PRINT @sql
EXEC (@SQL)
March 27, 2013 at 8:54 am
Normally you reorganise the index if the fragmentation is less than 30% (I think MS recommends a 20% threshold) over that and you start to look at rebuilding the index...
March 27, 2013 at 3:31 am
Viewing 15 posts - 256 through 270 (of 901 total)