Viewing 15 posts - 196 through 210 (of 349 total)
I'll bet that back in the late mainframe days they were bemoaning laser printers because someone could print out client lists and they wouldn't look like output from a system,...
July 29, 2005 at 6:40 am
Try running DBCC SQLPERF (LOGSPACE). It will give you log size and percent utilization for all databases.
July 29, 2005 at 6:24 am
If you have some space left on your current server, you could add filegroups/files, and start moving tables, indexes, etc. to their new filegroups. That way, when you restore onto...
July 28, 2005 at 7:35 am
Yes, like I said I did all of the steps that Microsoft recommends in their documentation in technet, I've set up SQL Agent mail many times, both on clusters and...
July 21, 2005 at 12:18 pm
You can run the following and see if there is an article for a particular table, and if so, what the Publication name is (from the database in question):
select *...
July 14, 2005 at 6:28 am
I know that you can also grab that info with a Multiphase Data Pump . Lookup Multiphase Data Pump Functionality in Books Online. You can write footer information, etc. with...
July 12, 2005 at 7:49 am
There's a pretty good script for this in the script section. Do a search for 'Script to list all user and roles'
It will list users, roles, and database access (not...
July 1, 2005 at 7:12 am
I don't think that there is a way to do this in SQL Server. Look into application roles, though. If you can create an application role, then set up those...
June 30, 2005 at 7:10 am
I've seen a lot of people advocate importing the file into a staging table and then use Stored Procedures to do the Update/Inset logic.
I've only had to worry about this type...
June 30, 2005 at 7:08 am
If you delete the tables, you won't have to worry about turining IDENTITY_INSERT on. you could just use the Copy SQL Server objects task in DTS.
If you want to...
June 24, 2005 at 9:00 am
i took a class at a local university (ASP.Net programming with VB.Net) and we used the Murach book. I really liked it as an introductory book.
June 22, 2005 at 9:43 am
I actually went further. Here's the originl setup:
1 Mirrorset - Transaction Logs (2 disks). Windows Drive I:
1 RAID10 - Data - MDF and NDF file (8 disks). Windows Drive J:
I was...
June 22, 2005 at 9:04 am
I got the best performance by creating multiple mirrorsets instead of one big RAID 10 set (Mirrored stripes). I created a filegroup made up of a file on each Windows...
June 22, 2005 at 8:49 am
Viewing 15 posts - 196 through 210 (of 349 total)