Viewing 15 posts - 361 through 375 (of 1,315 total)
Simon Storey (6/3/2009)
Any chance you can post sample of your technique to swap connections based on environment dynamically.
The article describes a way of managing multiple package configurations easily, it assumes...
June 3, 2009 at 7:10 am
Mike DiRenzo (6/3/2009)
June 3, 2009 at 6:52 am
Andy Leonard (6/3/2009)
June 3, 2009 at 6:44 am
We now now a unique constraint won't work for the Customer table - they're all named John. :w00t:
June 1, 2009 at 5:09 am
John Marsh (5/30/2009)
the ID columns are Identity columns, so will be unique by themselves
Identity columns are not necessarily unique. If you never reseed the identity sequence, and never use...
May 30, 2009 at 10:07 pm
Sorry, the first step is not to stop the server since it is already down due to the missing tempdb drive.
Also, the normal way to move tempdb (on a running...
May 27, 2009 at 4:10 pm
Look up "Moving System Databases" in Books Online. Here's the simple version, assuming your SQL Server is the default instance and not a named instance.
In a command window, stop...
May 27, 2009 at 4:01 pm
Krishna Potlakayala (5/21/2009)
Are you sure you can take a differential backup once the tlog has been truncated- (which means you have broken the log chain)- once truncated only possible backup...
May 21, 2009 at 7:35 am
Running DBCC SHRINKFILE is not the same as truncating the log. The command to truncate the log is BACKUP LOG ... WITH TRUNCATE_ONLY, and you should not use it....
May 21, 2009 at 7:10 am
HumanResources is the schema, so all queries were correctly qualified. The question specifically states that the database is AdventureWorks.
May 21, 2009 at 6:32 am
Many of the tools you can't afford have free trial versions available that you could use for a one-time job. Sometimes they are impressive enough that the beancounters can...
May 19, 2009 at 7:38 am
In a situation where management requires you to handle huge transactions, but refuses to buy the hardware to deal with it, even in the face of log truncations and server...
May 19, 2009 at 7:23 am
I haven't used DTS in a while, but I believe you can do a lookup on a separate connection in a data pump task to accomplish a join.
You're posting in...
May 19, 2009 at 6:50 am
How many connections do you normally see on this server? If connection pooling is working, the IIS server should require a relatively small number of connections. An overwhelming...
May 14, 2009 at 9:52 pm
It sounds like you want to pick the single best address for each entity, using the isMailing and isShipping fields to define "best" (with preference given to isMailing). All...
May 14, 2009 at 7:59 pm
Viewing 15 posts - 361 through 375 (of 1,315 total)