Viewing 15 posts - 106 through 120 (of 120 total)
How about an article on how to detect potential problems like an audit trigger that concatenates stuff together and stuffs it in a text field, potentially causing an error if...
August 16, 2005 at 10:10 am
Check again, aren't the 12 "rows" actually a list of your columns?
June 7, 2005 at 5:52 am
Thanks for all the fish!
The trick was dropping the server before trying to add it as "local". I had been trying to add it as local without first dropping it,...
May 19, 2005 at 12:11 pm
This can be due to many things. Infrequent (non-existant?) log backups, large transactions (DTS?), etc. Essentially the cure is usually to backup the log file, which will then allow the log...
May 17, 2005 at 4:47 pm
From my observations the sp:recompile trace shows automatic recompiles only. Thus if you were to add or remove indexes that would be used by a query, you will see the...
May 17, 2005 at 4:30 pm
I have made extensive use of XML and XSLT in an international data exchange network. All the data was and is stored in relational databases, as it should be. But...
April 23, 2005 at 4:36 pm
The following query will return all the table names and column names with the seed and increment values.
SELECT left (so.name, 30),
left (sc.name,...
August 20, 2004 at 3:31 pm
Try the "syscolumns" table. The column "autoval" will show the identity seed and increment values as the 2nd and 3rd 8 digit groups from the right.
August 20, 2004 at 2:46 pm
Hmmm,
Obviously you don't play Russian Roulette, as anyone who does and uses a "magazine" always loses if there is even one round in it.
June 11, 2004 at 9:11 am
Not sure of impact of "C + 2 data", but it sounds like what you'll probably want to do is set up continuous transactional replication publications on each...
March 3, 2004 at 11:59 am
Don't know about pre-7 versions, but SQL Server 7 / 2K both support updates via transactional replication. I.e. they either send actual SQL UPDATE statements or call custom stored...
March 1, 2004 at 3:58 pm
I know you can skip selected errors in SQL 2K, i.e. "On the -SkipErrors property you can put 20598.", but is there anything similar I can do for SQL 7?...
March 1, 2004 at 11:17 am
Never mind! Should have done search of forum first. Found previous post with reply for fix. Thanks!
January 9, 2004 at 9:11 am
Viewing 15 posts - 106 through 120 (of 120 total)