Viewing 15 posts - 451 through 465 (of 514 total)
Partition info is on the table, not the indexes. You have to rebuild. But if you use the Management Studio you can get it to write the script for you. ...
August 14, 2007 at 6:31 am
Ryan,
Apparently you are a little stressed. Couple things you need to understand.
1) This is an INTERNATIONAL Forum. There are lots of "little Foreign guys (and gals)" who read this.
2)...
August 13, 2007 at 3:14 pm
I also agree with Steve, but I still don't recall seeing the script I think it is obvious Ryans experience is not with...
August 13, 2007 at 8:52 am
The link about does tell you how to do it. However:
I feel the correct answer to your question is no, there is not an easier way.
I have to assume that...
August 13, 2007 at 8:22 am
Not sure that a restore is different than an attach in the long run. The idea of the job was to narrow down the time so that you can narrow...
August 10, 2007 at 2:45 pm
If there are no rows, and you can truncate it, then something/someone is creating REALLY large temp files, but they are cleaning up after themselves.
Since it appears to have...
August 10, 2007 at 1:29 pm
Sorry, that is 2005 syntax.
USE
TEMPDB
GO
SELECT
OBJECT_NAME(id),rowcnt FROM sysindexes
WHERE
ROWCNT...
August 10, 2007 at 8:07 am
This may help
USE
TEMPDB
GO
SELECT
sys.tables.NAME,SYSINDEXES.ROWCNT FROM
August 10, 2007 at 8:01 am
It sounds as thought you don't have a firm requirement on the accuracy of the data, so to your point. I would still store it as a date, and record...
August 10, 2007 at 7:50 am
What they said!
Even in small shops developer access to Production is risky, however you can usually deal with it. The only think you might want to grant the developers is...
August 10, 2007 at 7:22 am
You might be able to do it with a Logon Trigger.
Trigger on a LOGON event (Logon Trigger)
CREATE TRIGGER trigger_name
ON ALL SERVER
[ WITH <logon_trigger_option> [ ,...n ] ]
{ FOR...
August 10, 2007 at 7:11 am
Sorry, I should have stated what I thought was obvious. Create a Pseudo ID using an identity column and use that column to create a primary key that allows for...
August 9, 2007 at 12:57 pm
If the data is truly NOT unique in any way, then this is a case to create an identity column. The only reason for the data would be for replication...
August 9, 2007 at 9:10 am
Very interesting approach, so I put it to the test to see how efficient it really was. Sorry to say, it wasn't.
I did the following:
Table DDL: -- FYI the...
August 9, 2007 at 8:37 am
I did some checking (I need to get a life). It is possible to change the compatibility level without calling the stored proc. However!!!!! it is undocumented, and unsupported. I...
August 9, 2007 at 7:07 am
Viewing 15 posts - 451 through 465 (of 514 total)