Viewing 15 posts - 1 through 15 (of 323 total)
The data generation tool in visual studio for database professionals works really well.
You get a good variety of ways to generate data, including using an existing database as a source.
March 27, 2007 at 10:37 pm
You'll find the Maintenance Cleanup Task is a standard task in the Business Intelligence Studio (where you write SSIS packages).
I haven't used the wizard myself, but you could manually add...
March 27, 2007 at 10:34 pm
In SQL2005:
SELECT SCHEMA_NAME(OBJECTPROPERTYEX(OBJECT_ID('yourTablesName'),N'SchemaId'))
November 21, 2006 at 11:15 pm
If you want to suggest changes to Reporting Services, jump on Microsoft Connect, where you can give feedback and vote on changes.
https://connect.microsoft.com/feedback/default.aspx?SiteID=68
From a quick search there is only...
November 7, 2006 at 11:21 pm
Yes you can split ranges in partition functions.
Use the command ALTER PARTITION SCHEME .. NEXT USED newFileGroup to specify the filegroup you want the new partition to use.
Then use: ALTER...
October 29, 2006 at 11:59 pm
Are you displaying the output of your query in "Text Mode" in SSMS?
Grid mode (the default) could remove the crlf's for display reasons
August 14, 2006 at 7:56 pm
If you are working with that much data, you might find that Nsort works faster
August 10, 2006 at 11:37 pm
Are you looking to just move the logs or for transaction log shipping?
July 31, 2006 at 9:03 pm
Datawarehousing is just a little more specialised and a lot less understood.
If you are having troubles getting questions answered here, i'd suggest the microsoft forums, or trying some other sites....
June 21, 2006 at 9:38 pm
Another method is
USE master
go
DECLARE @spid int
SELECT @spid = min(spid) from master.dbo.sysprocesses where dbid = db_id()
WHILE @spid IS NOT NULL
BEGIN
EXECUTE ('KILL ' + @spid)
...
June 6, 2006 at 1:20 am
Read the resources on scalability with very large databases. There's lots of details and benchmarks on optimal configurations disk subsystems.
http://www.microsoft.com/sql/prodinfo/previousversions/scalability.mspx
February 26, 2006 at 4:23 pm
I'd say Marc is on the right track. I've upgraded a number of servers, and I use the following steps:
backup databases + os / etc (to separate network location, and...
February 20, 2006 at 9:57 pm
Sound similar to something I wanted to do a long time ago. I quickly knocked up an example today, so here's an article I wrote for you:
February 9, 2006 at 12:42 am
Japanese is unicode as well, so its best stored in nvarchar/nchar/ntext fields.
I would store a product description in multiple rows. If you created a table just for descriptions, you could store...
December 15, 2005 at 11:02 pm
If you want get just the date from GetDate() without the time, use CONVERT and the 112 format.
eg:
-- Get current date (without time) as string:
SELECT CONVERT( CHAR(8), GetDate(), 112)
--...
October 25, 2005 at 1:43 am
Viewing 15 posts - 1 through 15 (of 323 total)