Viewing 15 posts - 16 through 30 (of 53 total)
Hi hogpen, and welcome to the forum π
Good thing would be also to drop non clustered indexes on your claimdetail table before ETL and recreates them after.
Hope it helps....
October 19, 2013 at 12:29 am
There are times in production environments when your database is unresponsive because of the size of your transaction log, disk is full, backup of your log doesn't work (true story)...
October 18, 2013 at 1:26 pm
Not related, but with sql server 2012 you have now Extended events, pretty similar to SQL Server profiler but with better performances and scalability. Check it out ! π
October 18, 2013 at 1:20 pm
Thanks GilaMonster, my post is of course applicable only during extreme emergencies. π
October 18, 2013 at 1:10 pm
Ok. Never did it. But found this :
http://ermahblerg.com/2012/11/08/cluster-ssrs-in-2008/[/url]
Hope it helps. π
October 18, 2013 at 1:06 pm
Hi asranantha, π
I would use COALESCE AND CASE, because it's SQL standard.
SELECT CASE COALESCE(your_column,'NA') WHEN '' THEN 'NA' ELSE your_column END
Hope it helps. π
October 18, 2013 at 12:59 pm
Hi Benki, π
I think SSRS is not cluster aware.
Check this post :
http://technet.microsoft.com/en-us/library/bb630402.aspx
Hope it helps.
October 18, 2013 at 12:53 pm
Hi ben, π
select your msdb.dbo.backupset table to see what are your available backup sets.
October 18, 2013 at 12:49 pm
Hi cdl_9009, welcome to the forum π
I don't know if i did understand your question but you can create templates within sql server profiler this way :
Click File >...
October 18, 2013 at 12:42 pm
Hi Steve, this is called a RAID 5E right ?
Why not RAID 0 for the transaction log ?
October 18, 2013 at 12:34 pm
Hi amitsdba, and welcome to the forum. π
If you run out of space and sql server becomes unresponsive, switch the databaseβs recovery model to simple . This empties out...
October 18, 2013 at 12:13 pm
If you are trying to insert data from sql server 2000 into an earlier version of SQL Server, you can use linked servers.
insert into schema.table select * from linkOldSql2000.old_db.schema.table
insert...
October 18, 2013 at 12:03 pm
Found this post :
Might help you.
October 18, 2013 at 11:56 am
Use the distinct clause :
SELECT distinct *
FROM USER_PRFL up
INNER JOIN BSP_LOB_Grp_Lookup bl ON bl.BSP_LOB_GRP = up.User_Group
INNER JOIN IMPACTED_LOB il ON il.BSP_LOB_CD = bl.BSP_LOB_CD
WHERE(up.User_Id= USER_ID AND @ReportingViews = 0)
OR(BSP_LOB_GRP...
October 18, 2013 at 5:56 am
pawan.khandelwal (10/18/2013)
Yes, that column is also indexed.
Are column1 and column2 of your select clause included in the index ? If not, this is not a covering index.
Hope it helps.
October 18, 2013 at 5:27 am
Viewing 15 posts - 16 through 30 (of 53 total)