Viewing 15 posts - 20,191 through 20,205 (of 26,490 total)
When will people learn to read???
June 29, 2009 at 11:21 am
exec sp_password @new = 'password', @loginname = 'username'
June 29, 2009 at 11:19 am
Krasavita (6/29/2009)
June 29, 2009 at 10:59 am
Jeff Moden (6/29/2009)
Heh... solve it all... store everything in one big EAV with SCD 2 applied to eliminate the need for separate auditing or archiving... 😛
How about a single XML...
June 29, 2009 at 10:56 am
jrmtl (6/29/2009)
I guess we have to be logged in as SAI have admin rights and I execute
exec sp_password 'password', 'user'
and it tells me that MYuser doesn't exist?
No,...
June 29, 2009 at 10:54 am
From BOL:
sp_password [ [ @old = ] 'old_password' , ]
{ [ @new =] 'new_password' }
[ , [ @loginame = ]...
June 29, 2009 at 10:43 am
I'll keep that in mind as we move more reports to RS. It is info that will probably come in handy.
June 29, 2009 at 10:38 am
evaleah (6/29/2009)
Doing that gives me the same error messages as mentioned in the earlier thread. That fails.
Well, I don't do much with RS at the moment, but what I...
June 29, 2009 at 10:29 am
GSquared (6/29/2009)
Lynn Pettis (6/29/2009)
June 29, 2009 at 10:19 am
GSquared (6/29/2009)
June 29, 2009 at 10:18 am
If I remember the Modeling class at the TDWI conference a couple of years ago, 6NF is used to eliminate nulls being stored in a database. Also results in...
June 29, 2009 at 10:11 am
Have you tried changing the password using the GUI tools?
June 29, 2009 at 10:02 am
Have you set the max memory for the SQL instances? If not, each instance will try to use all available memory, starving your OS.
June 29, 2009 at 9:54 am
Here is another solution:
select
t1.id,
t1.date,
datediff(dd,t2.date, t1.date)
from
@tbl t1
left outer join @tbl t2
...
June 29, 2009 at 9:43 am
mandirkumar (6/29/2009)
I need a successive date difference for consecutive rows. Means second row will get (2nd rowdate-1st row date)
and third row wil get (3rd row date- 2nd row date)....
June 29, 2009 at 9:35 am
Viewing 15 posts - 20,191 through 20,205 (of 26,490 total)