Viewing 15 posts - 20,191 through 20,205 (of 26,484 total)
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
Found this in BOL:
A known issue in Windows Server 2003 might prevent the bad password count from resetting after the Account Lockout threshold has been reached. This could cause an...
June 29, 2009 at 9:32 am
You don't need to be in the master database to execute the ALTER LOGIN statement, I just tested that on one of my SQL test logins.
June 29, 2009 at 9:31 am
jrmtl (6/29/2009)
how can i check those user credentials... what is BOL ?
GO
ALTER LOGIN [xxx] WITH PASSWORD = 'xxxx' MUST_CHANGE
GO
Doesn't work...
June 29, 2009 at 9:27 am
Jeff Moden (6/29/2009)
Lynn Pettis (6/29/2009)
And that will work until the SQL Server 2000 system table "views", like sys.syscolumns, go away in a future version od SQL Server. They have...
June 29, 2009 at 9:15 am
Try taking the double quotes off of Month, ie datediff(MONTH,Fields!PrevExpDate.Value, Now)
June 29, 2009 at 9:01 am
Viewing 15 posts - 20,191 through 20,205 (of 26,484 total)