Viewing 15 posts - 25,951 through 25,965 (of 26,487 total)
There is one other 32-bit/64-bit difference regarding SSIS. If you have any scripts in your SSIS packages, the need to be precompiled before they are deployed on the 64-bit server. ...
May 10, 2007 at 8:40 pm
Naming the data warehouse with the name of the OLTP system may not be the best. As a conultant would say, "It depends." A data warehouse cuts across all organizational...
May 10, 2007 at 8:35 pm
Depending on your server utilization, you could crate a Data Warehouse database on the same server as your OLTP database, but I would advise againast it. I would get a...
May 10, 2007 at 1:50 pm
Oh, you could try downloading Toad for SQL Server and see how that works.
May 10, 2007 at 12:39 pm
I agree. I had to wait for SP 2 to be released to load the SQL Server 2005 client tools on my Vista laptop, but I use it a lot...
May 10, 2007 at 12:38 pm
Oh, and a few years ago I would have done it with nested cursors. learned some tricks at a couple of interviews that have paid off nicely!
May 10, 2007 at 12:26 pm
We are building a data warehouse. Part of it includes what I will call an ODS (operational data store) even if it doesn't really fit that definition. It will be...
May 10, 2007 at 12:22 pm
I have loaded and patched the SQL Server 2005 client tools, and they work fine. If you need to and can, install a virtual pc and load XP as the...
May 10, 2007 at 12:05 pm
I don't have any documents to show you, all I can tell you is what we do. Where I work now, our servers are rebooted weekly. At my previous employer,...
May 10, 2007 at 11:40 am
I found a problem, my cut and paste was incomplete. Here is the full code:
set nocount on
declare @SQLCmd varchar(max),
@schemaid int,
@objectid int,
@loopcnt int,
@DestinationDB sysname,
@SourceDB sysname
set @DestinationDB...
May 10, 2007 at 11:34 am
If the database was setup with the wrong collation, a backup and restore won't fix that.
May 10, 2007 at 11:21 am
Try this code (I would comment out the exec statements first and see what the output of the print statements are first):
use DWODS /* probably want to set this to...
May 10, 2007 at 11:10 am
I could put together a script that will build your insert into commands and run them dynamically if you would like. I have built several scripts that dynamically build some...
May 10, 2007 at 10:37 am
See post above yours..... I just Editted it.
May 10, 2007 at 9:09 am
Viewing 15 posts - 25,951 through 25,965 (of 26,487 total)