Viewing 15 posts - 61 through 75 (of 193 total)
adb2303 (8/2/2013)
August 2, 2013 at 3:07 am
Erland Sommarskog (8/2/2013)
August 2, 2013 at 3:05 am
ChrisM@Work (7/26/2013)
IT researcher (7/26/2013)
ChrisM@Work (7/23/2013)
-- why cast [Phone no] AS VARCHAR(MAX)?-- why use CHARINDEX? You don't need the character position, you only need to know if
-- one string...
July 27, 2013 at 1:41 am
ChrisM@Work (7/26/2013)
IT researcher (7/26/2013)
ChrisM@Work (7/23/2013)
-- why cast [Phone no] AS VARCHAR(MAX)?-- why use CHARINDEX? You don't need the character position, you only need to know if
-- one string...
July 26, 2013 at 8:29 am
ChrisM@Work (7/26/2013)
IT researcher (7/26/2013)
ChrisM@Work (7/23/2013)
-- why cast [Phone no] AS VARCHAR(MAX)?-- why use CHARINDEX? You don't need the character position, you only need to know if
-- one string...
July 26, 2013 at 8:28 am
ChrisM@Work (7/23/2013)
-- why cast [Phone no] AS VARCHAR(MAX)?-- why use CHARINDEX? You don't need the character position, you only need to know if
-- one string exists inside the other.
SELECT...
July 26, 2013 at 2:11 am
I will try using index.Before that i want to know how can i find the reason for slow running of query.(It may be due to network latency,table in high usage...
July 23, 2013 at 6:55 am
Hi Koen Verbeeck and ChrisM@Work
I know that indexing may help in reducing the time required to run the query.
But we want to know for which query is slower and requires...
July 23, 2013 at 4:01 am
Thank you hanshi..
By using your query i was able to rewrite my query.
DECLARE @trcfilename VARCHAR(1000);
SELECT @trcfilename = path FROM sys.traces WHERE is_default = 1
SELECT COUNT(*)as no_of_autogrowths,
sum(duration/(1000*60)) as time_in_min,FileName,DatabaseName
FROM ::fn_trace_gettable(@trcfilename, default)
WHERE...
July 17, 2013 at 6:30 am
Hi Gail Shaw..
Thank you for clarifying all my doubts.
July 13, 2013 at 8:01 am
I am not using differential backup in my environment. i use full backup and transaction log backup.So in this case taking full backup and copy only full backup are...
July 8, 2013 at 5:24 am
Yes. I saw that article.
But in my case all database are set to autoclose OFF.
Also the user exist and has sysadmin permission.
Also KB #92574 is for sql server 2005...
June 28, 2013 at 5:44 am
error log has so many errors.I filtered only login errors.
06/25/2013 19:04:29,Logon,Unknown,Login failed for user 'user'. Reason: Failed to open the explicitly specified database. [CLIENT: 192.168.1.69]
06/25/2013 19:04:29,Logon,Unknown,Error: 18456<c/> Severity: 14<c/> State:...
June 28, 2013 at 5:31 am
Password is not changed.Also this error will not come always. Only sometimes it comes,so no particular sequence which can repeat the error.
June 27, 2013 at 7:24 am
I got the answer from here.
June 22, 2013 at 4:33 am
Viewing 15 posts - 61 through 75 (of 193 total)