Viewing 15 posts - 496 through 510 (of 927 total)
pmadhavapeddi22 (7/22/2014)
Learnt something new today, thanks for the question
+1 🙂
July 22, 2014 at 5:32 am
Silverfox (7/22/2014)
July 22, 2014 at 3:20 am
It more likely the designation you get from a given company then a role basically. if you are working in a organization especially IT related company, they are tends to...
July 22, 2014 at 2:08 am
I think you should consider Jeff suggestion, as he described above that if your 1st column have very low number of value, which i can see in the procedure, i-e...
July 22, 2014 at 12:29 am
1) Share table definition
2) Sample data
3) your desired output
This will help us to provide a better response against the question.
July 21, 2014 at 3:14 am
npittson (7/18/2014)
After I posting I began scouring the net trying to put something together, in the end I found this worked for me:
CREATE TRIGGER dbo.MyTrigLI ON dbo.MPanel
FOR...
July 21, 2014 at 2:03 am
If you are loading large data in that particular table where you have created the index, then you can use disable and restore approach which can increase your performance. When...
July 21, 2014 at 1:50 am
When i say create a variable you need to create a variable manually at designer level 1st. then reference that variable in the script component. then you will be able...
July 21, 2014 at 1:42 am
Sreepathi1987 (7/21/2014)
Easy One. 🙂But i think it is rather unusual, tempdb is completely wiped out whenever the SQL Server service restarts. Yes or No?
The answer is Yes.
Nice and easy...
July 21, 2014 at 1:37 am
select [cs_id],userid, SUM(DATEDIFF(dd,[assgn_dtm],[complet_dtm])) - count(*)
from (
select distinct [cs_id],userid,cast([assgn_dtm] as date) as [assgn_dtm], cast([complet_dtm] as date) as [complet_dtm]
from temp_tbl
) Z
group by [cs_id],userid
does it make any sense ?
July 18, 2014 at 4:49 am
Can you share the desire output in a result set its still not clear.
July 18, 2014 at 3:41 am
Tail log backup WITH CONTINUE_AFTER_ERROR works only if the database goes offline in case during the start up of the database is fail to come online due to some reasons...
July 18, 2014 at 1:59 am
Excellent question, Thanks for sharing
July 18, 2014 at 1:24 am
When you edit the script component, there is an option where you can reference the local variables to the script component.
1. Create a UserID variable
2. Assign it to script...
July 18, 2014 at 12:22 am
Viewing 15 posts - 496 through 510 (of 927 total)