Viewing 15 posts - 931 through 945 (of 1,539 total)
Terry B (6/22/2009)
I looked at the properties of each table in the DB and the total size of all tables adds up to about 4 GB. How can I...
June 22, 2009 at 8:54 am
Thanks Steve for the link. Doc says it's available only in enterprise edition in sql 2k5. I somehow couldn't find it at that time.:-D
June 22, 2009 at 8:51 am
Generally i've seen restoration from disk is much faster than those from tapes. After all, you take backups for situations where u might need to restore faster in case of...
June 22, 2009 at 8:48 am
Tom John (6/22/2009)
June 22, 2009 at 8:43 am
Well, Jeff's queries are like that, Rocket speed execution. 😀
June 22, 2009 at 8:39 am
Sudiendra (6/22/2009)
Normal full backup...
June 22, 2009 at 8:36 am
Tom John (6/22/2009)
June 22, 2009 at 8:33 am
I guess u do masking on your front-ends. Databases must store actual values. You might want to consider encryption if you need ur certain column to look encrypted. SQL 2k5...
June 22, 2009 at 8:24 am
Oh yeah. Thanks for mentioning that point Steve. It's available in enterprise edition only.
I believe if the partitioning is done properly, conflicts can be avoided to a large extent.
Also, Identity...
June 22, 2009 at 8:17 am
jason (6/22/2009)
Hi,Is it possible to include a field in a query but not have the field included in the result set?
Many thanks,
Jason
___
if u're writing like
select col1, col2.... from table1, all...
June 22, 2009 at 8:04 am
i had similar issues. I tried setting up with GUI (configure security) and saw that authentication mode was 'negotiate' and it worked perfectly. I tried using certificates but no help.
my...
June 22, 2009 at 7:38 am
You may want to go through Jeff's article on tally table once and see if you can use some of the logics in ur case.
June 22, 2009 at 7:31 am
normally you reorganize your indexes if fragmentation is between 5-30% and rebuild if fragmentation>30%
Ref : http://technet.microsoft.com/en-us/library/ms189858.aspx
I suggest you keep reorganizing as a part of maintenance plans and rebuilding on...
June 22, 2009 at 7:22 am
select * from information_schema.tables
OR
select * from sysobjects where xtype='u'
This will give table details from a specific database.
June 22, 2009 at 1:26 am
Viewing 15 posts - 931 through 945 (of 1,539 total)