Viewing 15 posts - 4,651 through 4,665 (of 6,216 total)
I dont think so. Or at least running rebuildm to change the collation. One area where SQL2K is really nice!
Andy
March 25, 2002 at 1:55 pm
Thanks for the feedback! Nothing wrong with breaking any rule as long as you know you're doing it and why...more or less anyway! We're looking over the Worst Practices idea...
March 25, 2002 at 12:32 pm
Could you post the DDL for the table? Usually either a group by, or maybe the cube/rollup options will give you something quick and dirty. If you need something really...
March 25, 2002 at 8:13 am
Tried declaring it as a LOCAL cursor?
Andy
March 25, 2002 at 6:51 am
Yes, you can do it. Either bcp sysxlogins, use the transfer login task in DTS, or you can actually use sp_addlogin to do it without knowing the passwords. The 'gotcha'...
March 25, 2002 at 5:22 am
Distributed meaning use a linked server or openrowset. Do you have the text colummns full text indexed?
Andy
March 25, 2002 at 5:19 am
SP_grantdbaccess is the preferred method. If you look at sp_addlogin it just in turn calls sp_grantdbaccess.
Andy
March 25, 2002 at 5:18 am
Not in EM. You have to copy the info from/to sysusers and sysprotects. I think I've got a script somewhere to do it, will look.
Andy
March 25, 2002 at 5:17 am
Are you using text columns in the affected tables? Local query or distributed?
Andy
March 24, 2002 at 7:58 pm
Access isn't always very efficient. Whenever possible replace Access queries with SQL stored procedures or views. For importing data, your best bet is to try DTS. Typically imports will go...
March 24, 2002 at 6:20 pm
Fair point. I think the only issue with repair with prior to current service packs it would at times leave your db in single user mode. I believe SQL7 SP3...
March 24, 2002 at 5:01 pm
You can profile to capture logins and profile does have the ability to filter as it executes. If the profile is complex it's usually better to simplify it and then...
March 24, 2002 at 7:33 am
Please ask questions any time. All we can ask is that you take a shot at figuring things out first!
Don't delete those extra tables. They are "system" tables and hold...
March 24, 2002 at 7:32 am
Better to fix the queries that have problems than give up parallelism altogether in my view. That's why we bought the big boxes to start with!
Andy
March 23, 2002 at 7:09 am
Why would you do that until you discover you have a problem? Better to tune the offending query than give up multi processor power altogether. Im using one 4 way...
March 23, 2002 at 5:14 am
Viewing 15 posts - 4,651 through 4,665 (of 6,216 total)