Viewing 15 posts - 661 through 675 (of 2,904 total)
You found WHAT article?
If you drop a table from replication and the column is no longer needed, why don't you just drop the column?
-SQLBill
January 10, 2007 at 1:08 pm
Jasmine,
Again, most countries do NOT have laws that concern computers. You cannot arrest/prosecute someone from another country for something that country doesnot have laws for.
Yes, we may be...
January 10, 2007 at 1:05 pm
Ah!!!!!!!!!! I had no idea what you were talking about (I rarely go to the forum home. I just click on Active Topics in the menu). Cool change. I...
January 10, 2007 at 12:57 pm
At my last job, I created scripts that ran DBCC INDEXDEFRAG on each table separately. I would run DBCC SHOWCONTIG, then based on that, I would run the necessary...
January 10, 2007 at 12:53 pm
Okay, let's create a checklist.
1. Which one is a maintenance plan and which is a user-created job?
2. Is the transaction log backup job trying to backup databases that are in...
January 10, 2007 at 11:24 am
Very basic information.
1. DBCC DBReindex: locks up the tables and users may not be able to access the data until the reindex is done. Bottom line - this drops the...
January 10, 2007 at 11:14 am
Which product are you talking about? Microsoft Access? If so, you have to realize that SQL Server is commonly linked to Access databases and Access is commonly used as a...
January 10, 2007 at 10:56 am
Jasmine,
So you support committing a crime to stop something legal but that you don't like?
QUOTE: If they are operating in some lawless country, then I have no problem sending in...
January 10, 2007 at 10:47 am
There is a lot of malicious code that propagates via home computers to businesses. If you count the number of business computers and compare it to the number of...
January 9, 2007 at 5:08 pm
It probably has to do with 'backwards/forwards' compatibility. SQL Server 2005 has more security built into it than SS2000. It also has more features than 2000. That's probably why you...
January 9, 2007 at 5:00 pm
Compare:
SELECT SSN, MAX(dateid) AS Date2 from dbo.empdata GROUP BY SSN
to:
SELECT DISTINCT SSN, MAX(dateid) AS Date2 from dbo.empdata GROUP BY SSN
See if that helps....
-SQLBill
January 9, 2007 at 4:56 pm
And where in your script are you narrowing it down to ONLY DISTINCT SSNs????
Run JUST the inner select "SELECT SSN, MAX(dateid) AS Date2 from dbo.empdata GROUP BY SSN" and see...
January 9, 2007 at 4:55 pm
You have to realize, as Mark pointed out, that the DST fix is ONLY so that the OS changes the time on the correct day(s). That's all it's for. Without...
January 9, 2007 at 4:45 pm
Viewing 15 posts - 661 through 675 (of 2,904 total)