Viewing 15 posts - 6,196 through 6,210 (of 6,215 total)
If you're using SQL2K you could just change the collation to match the old one.
Andy
July 10, 2001 at 6:36 am
You cant use the results of a stored proc directly in TSQL (ADO is often a better choice for these types of things). The easiest way to do it in...
July 9, 2001 at 8:02 pm
We keep ours local, data on fibre. Nice and simple, plus good separation if you're having a problem with your storage.
Andy
July 9, 2001 at 7:59 pm
I'd vote for the SQL dump to disk as well. Easy and reliable.
Andy
July 9, 2001 at 7:56 pm
I've got some sample code posted in an article http://www.sqlservercentral.com/columnists/awarren/dmointro.asp that you may find helpful, plus a couple other articles on DMO, including one about how to restore.
If...
July 9, 2001 at 7:55 pm
Sorry we didnt get back to you in time. If you're connecting to a server via Query Analyzer to do the restore, it's pretty much like you're standing in front...
July 9, 2001 at 7:53 pm
If you're familiar with DMO you can manage logins (and a lot of other stuff) that way - the object model pretty much maps to Enterprise Manager. If you just...
July 9, 2001 at 7:50 pm
Does sound like prepared procs. Mostly went away with SQL 7. Been awhile, but I think the box in the dsn dialog is grayed out. Might take a look at...
July 9, 2001 at 7:44 pm
I havent seen anything quite like that, but how about this:
1) Script the tables you want to copy into a new db.
2) Use the designer to build your package.
3) Edit...
July 9, 2001 at 7:41 pm
I suspect this is a DCOMCFNG problem. I've run into a couple similar (but not DTS) situations recently that have me scatching my head. Been doing some reading, but haven't...
July 9, 2001 at 7:39 pm
Unless you're short on disk space, I wouldnt sweat the size. Definitely keep auto grow on. We had a recent thread along similar lines:
Andy
July 6, 2001 at 10:24 am
I would guess that you've got a value that SQL can't translate to a date. Try making a separate col that is a datetime, then update it with the contents...
July 6, 2001 at 7:14 am
How about this one:
select convert(varchar(20), getdate(), 112)
returns 20010705
Andy
July 5, 2001 at 4:07 pm
Duplicating ALL the functionality of EM might take some time! Doesnt BMC sell a web based admin product? I use PCAnywhere from home to office workstation, if needed I can...
July 5, 2001 at 4:03 pm
Take a look at the convert statement. Using a style of 121 will give you yyyy-dd-dd, just replace out the dashes and you're there.
Andy
July 5, 2001 at 8:42 am
Viewing 15 posts - 6,196 through 6,210 (of 6,215 total)