Viewing 15 posts - 4,006 through 4,020 (of 18,926 total)
Make a calendar table. Here's mine : http://www.sqlservercentral.com/Forums/Attachment8839.aspx
Then SELECT * FROM dbo.Calendar WHERE Y = @Year
will give you all the dates for that year. You'll also notice...
August 2, 2011 at 10:35 am
And why do you truncate the table? That won't work multi-users!
August 2, 2011 at 10:29 am
lol, you know you have a big integration when you need to balance load the machine that balance loads all the requests to the other 100s of servers :w00t:.
Thanks for...
August 2, 2011 at 10:27 am
err. So how do you host the data??? The data should ONLY be on SQL server, nothing in access. That way it's always up to the second!
August 2, 2011 at 10:25 am
Forgot to add that I have a single xeon dual core with 4 GB ram 32 bit that handles a 25 Gb DB with 100 full times users + OLAP...
August 2, 2011 at 10:20 am
Maybe I misread but when do you do your index maintenance and stats update?
Feels like you could get a lot of usefull info by reading this (instinct).
I'm sure you've done...
August 2, 2011 at 10:17 am
Put a folder share on the backup folder.
Then restore with the path \\BACKUPMachinName\SharedFolder\prod-date.back
I usually give full control access to the machine rather than a specific user. You need to...
August 2, 2011 at 10:14 am
Guys that's why I said to run a trace with statement completed + statistics profile XML. That gives the actual execution plan for each step.
When you find...
August 2, 2011 at 10:09 am
sqlbee19 (8/2/2011)
Thankyou Ninja,Gilamonster.
You're welcomed, come back anytime!
August 2, 2011 at 10:04 am
GilaMonster (8/2/2011)
What breaks the log chain is a switch to simple recovery.
Or losing / deleting the log backups on the drive. More rare but I've seen fat fingers before...
August 2, 2011 at 10:04 am
You're welcomed ;-).
Been bitten a few times by this one myself :hehe:.
August 2, 2011 at 10:02 am
Lavanyasri (8/2/2011)
Select * from sysproecessesm where blocked <>0 , you can find blocking SPID 's
Dbcc inputbuffer(spid) -- you can find the Current running Query .
First try to find...
August 2, 2011 at 10:01 am
Agreed, that's why I'm offering an overall solution which lets you did everywhere and that keeps log and query traces to pinpoint the problem rather than just guessing at it.
August 2, 2011 at 10:00 am
Eugene Elutin (8/2/2011)
Are you sure you have choosen the right nick? :hehe:
I would suspect that you do insert a lot into your table? Do you have...
August 2, 2011 at 9:37 am
Lucky9 (8/2/2011)
thanks for the reply but below are my findingsI have execute the below query
DBCC showcontig('tablename')
...
Like I said, this was very down the list of possible suspect and now...
August 2, 2011 at 9:36 am
Viewing 15 posts - 4,006 through 4,020 (of 18,926 total)