Viewing 15 posts - 2,806 through 2,820 (of 2,897 total)
I don't think Simple recovery is advisable in a production environment. Then you'll only be able to recover to a specific backup, not to any point in between backups, because...
August 17, 2005 at 9:43 am
Double check that they are in "Users" list of the database. Sometimes this gets corrupted, and you have to drop the login & recreate it.
August 17, 2005 at 9:37 am
" ..... The user used to use sa ..... "
I assume this isn't allowed anymore ? The sa password should be secure & available to the DBA only
August 17, 2005 at 9:34 am
When you say WA seems slower, are you referring to the intial connection time, or response time during the day while running apps ?
August 17, 2005 at 9:30 am
If a user could have a NULL default database, then why bother having the user in SQL at all ? If they have a login account, then that assumes they...
August 17, 2005 at 9:27 am
This won't help you now ... but ....
Every time a deleoper has a stored proc to go to production, I script out the current production one, so I have a...
August 17, 2005 at 9:22 am
According to BOL, Monday is 1, so the results you're getting are correct.
Value | First day of the week is |
---|---|
1 | Monday |
August 16, 2005 at 9:58 am
In Enterprise Manager, you always have to click "REFRESH" in order to see the current list of Stored Procedures, Tables etc ... Perhaps that's why you don't see the new...
August 16, 2005 at 9:40 am
You're getting "SET USER" in your generated script ?? I never get that. I just tried logging on as a "user", and I still don't get "SET USER"
August 15, 2005 at 8:07 am
This version posted earlier doesn't work properly:
DECLARE @a NCHAR
SET @a = '-'
SELECT datalength('a1sdsad12---325143gffdfd4dgsf1 -')
-
datalength(convert(varchar,REPLACE('a1sdsad12---325143gffdfd4dgsf1 -',@a,'')))
It returns the right result in this case, but if you search for...
August 13, 2005 at 10:04 pm
Here's 1 idea:
This selects every 6500 th record, using an identity field
SELECT fielda, fieldb, fieldc
FROM TabRele_Name
WHERE Identityfield % 6500 = 0
This selects JUST the 6500 th record, using the...
August 13, 2005 at 9:45 pm
I think I renamed the .pst file, and then it created a new one which fixed the problem.
August 12, 2005 at 8:09 am
I'm undecided ...... I was going to go, but our company's in "cost saving" mode .... so I thought I'd do my part & skip it
August 11, 2005 at 2:53 pm
Remi, you're a first year programmer, with 4400 posts !! You've had some pretty good ones, so you must be picking this stuff up pretty quickly ! Time to ask...
August 11, 2005 at 2:41 pm
Viewing 15 posts - 2,806 through 2,820 (of 2,897 total)