Viewing 15 posts - 1 through 15 (of 22 total)
"Listing 6: Subquery in function call" looks same as Listing 5.
January 29, 2014 at 1:12 am
Thank you for the replies. I'll prepare sample data and examine the plan. Then I can share the results here as well.
I asked the question because if I get a...
August 18, 2011 at 4:56 am
Abs-225476 (6/29/2011)
One thing I would say is to make sure you do a test run to yourself, you wouldn't want an incorrect report to be sent out to 2000 users...
July 1, 2011 at 12:54 am
Yes that is exactly what I want. Thank you very much.
In this article it is explained well: http://msdn.microsoft.com/en-us/library/ms169673.aspx
June 7, 2011 at 10:00 am
Thank you very much. I'll try to find more resource on data driven subscription topic.
I found something, it may help others as well:
http://msdn.microsoft.com/en-us/library/ms157252.aspx
http://www.codeproject.com/KB/reporting-services/PDFUsingSQLRepServices.aspx
http://www.sqlservercentral.com/articles/Development/datadrivensubscriptions/2432/
June 7, 2011 at 3:17 am
My question is how do I use report service to send N number of reports, while N can be changed. And in my case it is ~2000.
So is it possible...
June 6, 2011 at 10:30 am
Hi, as I said in my first post, it is still worth because SQL Server creates a thread to read data for each file even those files are on same...
December 22, 2010 at 6:04 am
Hi,
Multiple files gains some performance since SQL Server uses multiple threads to read data. If those file are on different physical drives then you gain some more performance.
If your database...
December 22, 2010 at 2:57 am
log table ~9-12 GB (rows for 3 months)
archive table: depends on how many records but same size with log table. 3 months = 9-12 gb. mostly my customers holds rows...
December 21, 2010 at 9:11 am
I created that computed column as primary key with IGNORE_DUP_KEY=true, so it won't lead an error if hash collide. And of course it is a very (very!) little chance to...
December 3, 2010 at 7:05 am
Thank you very much for your explanations.
As you said, it is not a clustered index, I use it just for making rows unique without creating a big multi-column unique index....
December 3, 2010 at 7:01 am
Don't use BEGIN TRANSACTION and COMMIT, it will rollback if an error occurs.
If you use Management Studio put GO (batch separator) between each lines.
INSERT ...
GO
INSERT ...
GO
...
If you use vbscript or...
December 2, 2010 at 2:58 am
Try using BULK INSERT instead (or bcp.exe) and play with batchsize setting.
December 1, 2010 at 9:49 am
Thank you for the replies, I use asterisk just to keep the example short.
I sometimes don't use FKs because of compatiblity with other db systems.
I know it is important for...
March 27, 2010 at 1:43 pm
Thanks for the reply, I guess no chance without adding new/computed columns.
Even constant values prevents using the index.
select * from t where a + 1 = 500
a is indexed, but...
May 29, 2009 at 2:46 am
Viewing 15 posts - 1 through 15 (of 22 total)