Viewing 15 posts - 31 through 45 (of 125 total)
I have done this myself.
Thanks for reading ....
select
left(substring(QueryString, PATINDEX('%src=%',querystring)+ 4, len(queryString) ),PATINDEX('%&%',substring(QueryString, PATINDEX('%src=%',querystring)+ 4, len(queryString) ))-1) myDesiredValue
from MyTable
November 22, 2010 at 4:15 am
Please discard this post as i made the solution, I was making wrong calculation and due to which I was stuck in the query results, it all is about the...
September 24, 2010 at 5:36 am
If I separately query for each results it is something like below:
Declare @BillingFrom datetime, @BillingTo datetime
set @BillingFrom = '12-dec-2009 3:45 PM'
set @BillingTo = '25-Feb-2011 4:45 PM'
-- EXEC uspMonthlyBilling @BillingFrom='12-dec-2009...
September 21, 2010 at 1:29 am
The fix is giving wrong output as it is same as i had worked on it and sent you the query. Also there was some data issue in Duration Col...
September 21, 2010 at 1:14 am
I'm sorry as I was so busy, so I made post like this: Here is the script
-- create sample table of users
CREATE TABLE [dbo].[UserTracking](
...
September 20, 2010 at 12:19 pm
Thanks, this worked - Great.
With continuation, I have one another table "UserTracking" in which there is duration of users something like below:
Table: UserTracking
Columns: startDateTime, endDateTime, Duration, UserId
The duration col. contains...
September 20, 2010 at 7:30 am
Yes i have mentioned that i have used your latest script. I have tested this on SQL Server 2008 EE.
Shamshad Ali.
August 23, 2010 at 12:26 pm
Hello,
The script you make with efforts are highly appreciated, but the latest script I checked for my case is not perfect and have bugs. All, always verify your script...
August 23, 2010 at 12:07 am
NO one is looking into this ?
Shamshad Ali
June 29, 2010 at 11:55 pm
I have successfully got it working by changing the parameter = ON on both - Thanks, that worked.
No more locks on 100 users, will start testing on more users today.
Shamshad...
June 29, 2010 at 11:42 pm
My friend, I used following script to create Three non-clustered indexes:
CREATE NONCLUSTERED INDEX [IX_ProgramTracking_ProgramId] ON [dbo].[ProgramTracking]
(
[ProgramId] ASC
)WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, SORT_IN_TEMPDB = OFF, IGNORE_DUP_KEY...
June 29, 2010 at 6:19 am
Thanks for your comments back again. I respect all who are taking interest and helping me out. I really need to solve this issue.
Shamshad Ali.
June 29, 2010 at 3:51 am
I am talking about "WITH (TABLOCKX)" - These are called HINT -
Shamshad Ali.
June 29, 2010 at 2:25 am
I don't think that HINT will solve my problem, its locking at the first insert statement <Master table>, when it returns the ID then it will be possible to insert...
June 29, 2010 at 2:07 am
Here the SP code
Alter PROCEDURE [dbo].[SaveTrackingRecord]
(
@XmlDocument xml, ...
June 28, 2010 at 11:58 pm
Viewing 15 posts - 31 through 45 (of 125 total)