Viewing 15 posts - 76 through 90 (of 95 total)
It can help with speed by reducing waits based on IO.
Im sure someone will correct me if im wrong.
February 1, 2013 at 12:39 am
January 29, 2013 at 11:12 pm
This is probably what you are after
http://sqlinthewild.co.za/index.php/2009/03/19/catch-all-queries/
January 29, 2013 at 11:10 pm
Why dont you post some code to see if anyone can help in optimising it ?
January 25, 2013 at 12:53 am
Keep in mind that the 2 solutions you have given will only really be valid if all students have the same number of courses.
January 18, 2013 at 1:47 am
What have you tried so far ?
January 17, 2013 at 11:48 pm
Thanks Chris,
Appreciate the feedback.
Looks like i was close so thats always a bonus.
Ive never used ntile before and it certainly looks interesting (although its not suitable for this requirement).
Initially i...
January 17, 2013 at 6:03 pm
Ive found this too but one thing i noticed is if you use the little search button that pops down a small window that actually works and returns results.
November 28, 2012 at 12:48 am
This is what i do with my dynamic sql.
CONVERT(varchar(20),@abc)
so it would be
declare @abc int
set @abc =1
declare @cmd varchar(100)
select @cmd='select'+CONVERT(varchar(20),@abc)+'hello'
print @cmd
just remember to change varchar(20) to...
November 25, 2012 at 6:50 pm
Thanks for the reply.
I will check the VLF fragmentation when the database is backup although im hoping it will be ok since i ran through an article about it a...
November 8, 2012 at 8:17 pm
Im not looking at preventing it but I am hoping to limit the amount of time it takes if its at all possible.
Based on the log file im currently looking...
November 8, 2012 at 8:01 pm
I have considered a consultant yes and will talk to the appropriate people about getting one in.
I thought id give the forums a go just in case it was something...
October 21, 2012 at 8:00 pm
Thanks for the advice about sparse tables and columns - ive never used them before so i will do some reading.
October 21, 2012 at 7:58 pm
OK so yes originally this was based on spreadsheets (before my time) and i dont want to use an EAV but I lack design skills which is why im asking...
October 21, 2012 at 7:32 pm
Viewing 15 posts - 76 through 90 (of 95 total)