Viewing 15 posts - 35,746 through 35,760 (of 39,720 total)
Not sure, but we've got Microstrategy running here and I have traced some SQL that is larger than anything I'd every write. We're talking 4+ printed pages of SQL in...
October 15, 2003 at 4:23 pm
bulk insert
Or use DTS
Steve Jones
http://www.sqlservercentral.com/columnists/sjones
The Best of SQL Server Central.com 2002 - http://www.sqlservercentral.com/bestof/
October 15, 2003 at 10:47 am
Strange. Haven't seen anything like this, but suspect you may need to call PSS on this one.
Steve Jones
http://www.sqlservercentral.com/columnists/sjones
The Best of SQL Server Central.com 2002 - http://www.sqlservercentral.com/bestof/
October 15, 2003 at 10:43 am
what about two statements? One where the WHERE clause has
AND Cust.SendNews = 'Y'
AND ACL.SendNews = 'N'
and the other with the reverse? With an index on Sendnews, this may be faster.
Steve...
October 15, 2003 at 10:41 am
I believe that is correct.
Steve Jones
http://www.sqlservercentral.com/columnists/sjones
The Best of SQL Server Central.com 2002 - http://www.sqlservercentral.com/bestof/
October 15, 2003 at 10:38 am
Perhaps. I like identities, but last year some of the Data Warehouse guys from MS said the GUID is faster. Identity tops out around 4000/sec?, I think.
Steve Jones
http://www.sqlservercentral.com/columnists/sjones
The Best of...
October 15, 2003 at 10:37 am
That's the method I'd use, but I have a batch file that connects to the appropriate dbs and I pass in the name of the scipt.
Steve Jones
http://www.sqlservercentral.com/columnists/sjones
The Best of SQL...
October 15, 2003 at 10:14 am
Thanks, glad there are a few people who can appreciate my pain.![]()
Steve Jones
http://www.sqlservercentral.com/columnists/sjones
The Best of SQL Server Central.com 2002 - http://www.sqlservercentral.com/bestof/
October 15, 2003 at 10:08 am
Other than hardware, you might try running it in batches, so get a count and run 100 at a time or something. Sometimes that helps speed things up. Are there...
October 14, 2003 at 10:54 am
Save them as a "Structured Storage file", which will be a .dts file on your local drive. Zip them, email them, whatever. On the remote machine, right click the "Data...
October 14, 2003 at 10:51 am
Not sure I have a good answer, but here are a few thoughts.
There is no current way to load a single table. It was a great feature in 6.5, mainly...
October 14, 2003 at 10:42 am
Not sure you can attach a filegroup. You can do a restore, so perhaps that is an option.
I believe snapshot replication can use ftp, but I'm not sure. Might do...
October 7, 2003 at 10:02 pm
Very nice and an interesting idea for auditing packages. One question: Any issues with a trigger in msdb for patches/service packs? Not sure I like the idea of changing the...
October 6, 2003 at 10:11 am
If the restores only need to be periodic and not up to the minute, then I'd use the "Simple" recovery model for each db. This will handle the logs for...
October 6, 2003 at 10:04 am
Do you mean a back TO another server? So your data is in two places?
You can use transactional replication. But the 2nd server is read only for the most part....
October 6, 2003 at 10:01 am
Viewing 15 posts - 35,746 through 35,760 (of 39,720 total)