Viewing 15 posts - 1,021 through 1,035 (of 6,216 total)
I know of no way to figure it out other than query every column to figure out what the largest value is. Then set the max to that or larger....
August 20, 2004 at 3:45 pm
If the option has been used, you could query Active Directory. If not, you'd have to a get a list of all servers (DMO has a method for this I...
August 20, 2004 at 11:56 am
Not much to it. Temp tables are private to the user. To use a permanent table to do the same thing you first create the table and grant appropriate users...
August 19, 2004 at 5:54 pm
I'd suggest making it work in VBS to start with, then porting it to TSQL if you have a reason (or interest) in doing so. As I remember you can...
August 19, 2004 at 1:14 pm
What makes them a better community? We're always looking for ways to improve.
August 19, 2004 at 9:06 am
Im probably the only one that will say this, but I wouldn't rule out uniqueidentifiers in all cases. Especially if you need the ID to do a parent/child insert using...
August 18, 2004 at 6:29 pm
I would use a permanent table, save the overhead of creating/removing the temp table each time. Definitely you want to close the connection and that makes temp tables expensive.
August 18, 2004 at 6:26 pm
Generally web sites use one account for all data access, can be a Win account or a sql login. Then you right separate code to authenticate/authorize the user to do...
August 18, 2004 at 6:21 pm
Agree that either way will work, though I like modifying the proc more than using the trigger - cheaper to not do the work. You could also use an instead...
August 18, 2004 at 6:17 pm
I agree with that. If you're at that Zen level where you test all your options. My comment was directed more to provoke thought, as I see a lot of...
August 16, 2004 at 2:38 pm
I agree, if there is no connectivity you have to work a lot harder. Depending on the enviroment, sometimes you can get everyone to agree to set up a VPN...
August 16, 2004 at 11:27 am
Try adding set quoted_identifier off at the top, or change the double quotes to two single quotes. The @TheKeyword <> null is bad, should be is not null.
August 16, 2004 at 11:21 am
I've found it happens when someone deletes rows from the subscriber 'by accident'. Easiest way to fix is to either do a new snapshot (very brute force, but effective), or...
August 16, 2004 at 11:15 am
Interesting. I know the wizard adds/drops indexes as it schemes along, just doing that shouldnt affect replication - unless it tries to change the primary key, that would not work...
August 16, 2004 at 11:12 am
Viewing 15 posts - 1,021 through 1,035 (of 6,216 total)