Viewing 15 posts - 571 through 585 (of 790 total)
I'm late here ...anyway Congratz Jonathan!
November 25, 2008 at 6:02 am
If you are sure that you install SSAS during the installation, be sure that your service is running at the SQL Server Configuration Manager!
November 25, 2008 at 5:03 am
Do we have any possibilities to make snapshot just in particular objects not snapshot all DB!???
Example is if I want to snapshot 3-4 tables every 15 min, then these results...
November 20, 2008 at 7:58 am
it's sure that you can find many ways one above and this one for is the best:
USE Your_Database;
GO
SELECT o.name AS "Table Name", i.rowcnt AS "Rows"
FROM sysobjects o, sysindexes i
WHERE...
November 20, 2008 at 7:33 am
I'm not sure why do you want to run SP, till you can run this script and see some results anywhere in your DB, try it:
SELECT o.name TableName ,i.rows TblRowCount
FROM...
November 20, 2008 at 7:29 am
Do you have active constraints ... try to disable constraints and after that try deletion then enable constraints again !
November 19, 2008 at 12:21 am
Jeff Moden (11/18/2008)
Dugi (11/18/2008)
TRUNCATE TABLE name_of_your_table
couz the DELETE command is logged and every deleted action will recorded on log file and if you have million of records...
November 19, 2008 at 12:17 am
Try to truncate table
TRUNCATE TABLE name_of_your_table
couz the DELETE command is logged and every deleted action will recorded on log file and if you have million of records sure that you...
November 18, 2008 at 10:12 am
yes the row_number() combination with CTE works perfect to find the values as you want to show couz you have also other function like rank() dense_rank() Ntile()
great post here,...
November 9, 2008 at 5:23 am
Good stuff here about logs! Nice article Gail! 😎
October 31, 2008 at 5:59 am
homebrew01 (10/3/2008)
October 18, 2008 at 9:59 am
Profi solution and nice stuff here about this problem!
October 13, 2008 at 6:45 am
If the process is a routine maybe the best way is SSIS Package and run it whenever you want!
😉
October 13, 2008 at 6:11 am
GilaMonster (10/12/2008)
The compatibility level just affects the parser and query processor and change the way that T-SQL is interpreted and what command are permitted.
Ok I have experience from SQL Server...
October 12, 2008 at 2:53 am
Viewing 15 posts - 571 through 585 (of 790 total)