Viewing 15 posts - 1 through 15 (of 38 total)
Thank you folks for valuable advices.
If you are updating statistics after index rebuilds, you are doing double the work. Rebuilding an index updates the statistics. No need for...
June 21, 2012 at 8:46 am
Perry Whittle (6/20/2012)
sqlbee19 (6/19/2012)
FROM dbo.SYSINDEXES SI (NOLOCK)
INNER JOIN SYS.OBJECTS T ON T.object_id = SI.[id]
Instead of using sysindexes, use sys.indexes and sys.objects
Perry - Thanks for your response.
I am...
June 20, 2012 at 8:42 am
I know "where 1 = 1" doesnt make sence but somehow I used it in thread. I was more concerned on the output being truncated then the bug in my...
May 24, 2012 at 11:19 am
michael vessey (5/24/2012)
michael vessey (5/24/2012)
sqlbee19 (5/23/2012)
michael vessey (5/23/2012)
May 24, 2012 at 7:53 am
mkalyana.murugan (5/23/2012)
In my server I have totally 100 databases on which 7 are core databases. Meaning all the 93 databases will fetch/refer the data from the 7 databases. The...
May 23, 2012 at 12:46 pm
awesome Lowell.
It works. Thank you.
May 23, 2012 at 12:04 pm
michael vessey (5/23/2012)
May 23, 2012 at 11:43 am
Thanks Anthony. The reason I am looking for log file because SQL doesnt put complete log in table as it will be truncated after its limit.
May 23, 2012 at 8:26 am
If I am understanding you, you do not want to allow the token for the Windows User logged into the desktop app to all the way to the daabase because...
May 22, 2012 at 9:28 pm
Thanks for your responces.
Here are more details:
The app I am reffering to is VB 6 Desktop application. We have a middle tier server where we have all VB6 application binaries....
May 22, 2012 at 8:19 pm
Yeah I agree.
The solution I am looking is for Application level access.
For example :
We have appliction X and we have 1000 end users to that application. When ever users use...
May 22, 2012 at 2:11 pm
Gsquared - Thank you very much for guiding me on this.
The issue has been identified as Parameter sniffing.I solved it by changing procedures code in such a way that SQLserver...
May 10, 2012 at 9:01 am
Thanks Folks. I will go with creating a SQL and will ask everyone to use as owner of jobs.
May 8, 2012 at 8:42 am
Thank you. Will update the thread with my findings.
April 23, 2012 at 9:47 am
Viewing 15 posts - 1 through 15 (of 38 total)