Viewing 15 posts - 331 through 345 (of 961 total)
In this case it might be easier to ahve two tablix controls one fetching the job info and the other fetching the event info grouped by Job it.
If you want...
July 27, 2012 at 9:37 am
Any reason why u cant write asingle query to return the combined result set ?
July 26, 2012 at 1:46 pm
GSquared (7/26/2012)
Jayanth_Kurup (7/26/2012)
u cud try a computed column with a function call also.
Computed column won't work for a value that's based on GetDate(). Value of the column would change...
July 26, 2012 at 1:43 pm
Like mentioned above checkdb is a good thing to run ,infact its a good idea to run check db at least one 1 week.
any reason why you do not want...
July 26, 2012 at 1:40 pm
u cud try a computed column with a function call also.
July 26, 2012 at 1:36 pm
43gb for model db .... use the aler database statement instead of the ui
July 24, 2012 at 12:01 pm
+1 backup restore , however have a look at the below link as well
http://www.sqldbops.com/2010/05/token-based-server-access-validation.html
July 24, 2012 at 11:54 am
I wud suggest adding a new column and moving the data in batches then. Once done u can simply rename the old column or drop it.
July 24, 2012 at 11:23 am
the table will be locked while the conversion occurs. How big the the table ?
July 23, 2012 at 6:10 pm
declare @datetime datetime = '2011-7-13 2:39:39 PM'
if convert(varchar,@datetime,120) = convert(varchar, '2011-7-13 14:39:39', 120)
print 1
else print 2
declare @datetime2 datetime = '2011-7-13 14:39:39'
if @datetime2 = convert(varchar, '2011-7-13 14:39:39', 120)
print...
July 23, 2012 at 6:00 pm
try the rownumber function with partition by
July 23, 2012 at 5:43 pm
There is a CPU overhead with compression, since your inserting thousands of rows , make sure you take this into account. other than this there is nothin special needed to...
July 23, 2012 at 5:34 pm
I guess the recommendation would depend on the RIAD configuration and what other operation you intend to perform on it. The primary reason i say this is becuase the more...
July 23, 2012 at 5:21 pm
Look up the following topics in more details , PAE , 3 GB Switch and most important AWE in books online
The real question here is are you have of...
June 14, 2012 at 12:32 am
Great artcile on the real meaning on BCHR ...totally underestimated the role of read ahead optmization.
Well i guess in this case it wont matter coz the entire Db can be...
June 1, 2012 at 2:09 pm
Viewing 15 posts - 331 through 345 (of 961 total)