Viewing 15 posts - 2,041 through 2,055 (of 2,647 total)
It is probably because the user has not yet been added to a server group outside of SQL. Try logging in as sa and then managing the users through...
December 15, 2011 at 11:55 am
Joshua D Gang (12/15/2011)
initerrlog:...
December 15, 2011 at 11:21 am
I have had this happen before when we created new locations for data or log files, deleted the default folders (no files were in them), but never changed the default...
December 15, 2011 at 11:21 am
How come nobody mentioned "Restart SQL Server service or Windows" in any posts? We are, after all, working with Microsoft... 🙂
"Have you tried turning it on and off again?" -IT...
December 15, 2011 at 9:13 am
ricardo_chicas (12/15/2011)
December 15, 2011 at 7:47 am
sroumel (12/14/2011)
select y.status, COUNT(*)as meter_cnt
from (
select case
when x.recission_date > x.flow_end_date then 'cancelled'
when x.flow_end_date IS null and x.flow_start_date IS not null then 'active'
when...
December 14, 2011 at 1:24 pm
select COUNT(*)as meter_cnt
from (
select case
when x.recission_date > x.flow_end_date then 'cancelled'
when x.flow_end_date IS null and x.flow_start_date IS not null then 'active'
when x.flow_end_date IS not null then 'churn'
else 'in transit'
end status
from
(select cal2.sale_Date,
cal2.recission_date,
cal2.flow_start_date,
cal2.flow_end_Date,
cal2.esiid,
ROW_NUMBER()...
December 14, 2011 at 12:51 pm
I have used Red-Gate's SQL Data Compare at 2 different companies and think it is great. Mainly because of all of the options that it has to compare and...
December 14, 2011 at 12:46 pm
Ninja's_RGR'us (12/14/2011)
prashant-507002 (12/14/2011)
If you are good DBA then why not provide me solution.
I don't know for sure about dev but most of us are far beyond good & great.
1+1=2. ...
December 14, 2011 at 8:29 am
If you are good DBA then why not provide me solution.
It seems to me that solutions are being provided and you are failing to implement them. Why did you come...
December 14, 2011 at 8:23 am
p-nut (12/13/2011)
ankurk2 (12/13/2011)
=MonthName(Month(Fields!new_sitevisiteddateutc.Value))& "-"& Year(Fields!new_sitevisiteddateutc.Value)
I am easily getting what i want but can't sort it . Can you tell me in detail.
One more thing this new column...
December 13, 2011 at 1:59 pm
ankurk2 (12/13/2011)
=MonthName(Month(Fields!new_sitevisiteddateutc.Value))& "-"& Year(Fields!new_sitevisiteddateutc.Value)
I am easily getting what i want but can't sort it . Can you tell me in detail.
One more thing this new column is...
December 13, 2011 at 1:57 pm
ankurk2 (12/13/2011)
=MonthName(Month(Fields!new_sitevisiteddateutc.Value))& "-"& Year(Fields!new_sitevisiteddateutc.Value)
But I am not able to sort month-year wise.
Like I want MAY-2009 JUNE-2009 JANUARY-2011...
December 13, 2011 at 1:48 pm
Ajdba (12/13/2011)
I am trying to replace set of hard-coded datetime with datetimes dynamically captured; but the result I am getting are not same, can somebody suggest what I am missing.
Tnx
...
December 13, 2011 at 1:43 pm
Viewing 15 posts - 2,041 through 2,055 (of 2,647 total)