Viewing 15 posts - 23,611 through 23,625 (of 39,818 total)
sayfrend,
Thanks for the license update. That must be a change from previously.
May 28, 2009 at 3:20 pm
I think Google is just as bad as Microsoft has been, but I also think that this is the way most companies behave as they get successful. People want to...
May 28, 2009 at 11:52 am
I tend to agree with Jefferey here, but I'd say that you want to standardize so everyone knows in a DR situation which data to restore.
If there is non-SQL data...
May 28, 2009 at 11:43 am
You'd need to log from the plan, not the job. The job doesn't log enough.
The big thing with remote backups is that any hiccup in the network will fail it....
May 28, 2009 at 10:53 am
Something like this:
Select POBuyersItemKey
, substring( POBuyersItemKey, 1, 7)
, substring( POBuyersItemKey, 8, 1)
, '5967241' + '|' + '19-62006-9-20'
from ISFfactory
order by POBuyersItemKey
Be...
May 28, 2009 at 10:48 am
I read that gem. Had to read it twice to be sure that I wasn't misreading things.
Shaking head here all the while. Some days I think I should just go...
May 28, 2009 at 10:41 am
Here's the thing. You can use a hash to try and determine if you have a duplicate. Not for encrypting.
What I'd suggest is that you use a separate column...
May 28, 2009 at 10:40 am
[drive by post]
I'm lost again
[/drive by post]
May 28, 2009 at 10:22 am
Try also printing out the intermediate values. Either with PRINT or a SELECT to your query results. It will help you figure out what's being compared. You can also...
May 28, 2009 at 10:07 am
I think MS found it easier to say "varchar" rather then "charvar"
May 28, 2009 at 10:03 am
jay holovacs (5/28/2009)
Robert Domitz (5/28/2009)
A few years ago, I purchased a lot of five used Dell PCs which had been "traded in" for new systems from a value-added reseller. ....
......
May 28, 2009 at 9:55 am
SELECT * is typically resolved at compile time, and expanded to be the columns. So over time, if you've modified the schema, and a plan exists, this might not return...
May 27, 2009 at 5:50 pm
AFAIK, you cannot create an instance programmatically using SMO. The setup program for SQL Server has to run, which is what VS does. It has a setup file set that...
May 27, 2009 at 3:13 pm
Use the data import wizard to set up a basic package. From there, you can add to it.
there are lots of SSIS articles here on the site (http://www.sqlservercentral.com/Articles/SSIS) as well...
May 27, 2009 at 3:06 pm
Viewing 15 posts - 23,611 through 23,625 (of 39,818 total)