Viewing 15 posts - 31 through 45 (of 92 total)
CREATE TABLE dbo.TestAsset(AssetID INT IDENTITY(1,1) PRIMARY KEY, SerialNo VARCHAR(100))
--CREATE Filtered UNIQUE Index to allow multiple records of NULL and Unique non-null values in serialNo column
CREATE UNIQUE NONCLUSTERED INDEX UK_TestAsset_SerialNo
...
May 29, 2012 at 2:10 pm
I'm on SQL Server 2008 R2
May 29, 2012 at 12:48 pm
Thanks so much. I'm on SQL Server 2008 and decided to use Filtered Index on that column. However the issue i'm having is that i would like to create a...
May 29, 2012 at 11:15 am
I was able to figure out the issue.
In SQL Server 2008:
Right Click on the Y-Axis --> Select Axis Properties -> Select "Enable variable interval"
In SQL Server 2008 R2:
Select Y-Axis -->...
March 27, 2012 at 5:35 pm
Thanks for the reply.
I've added Column group total and getting the totals correctly when the report is fully expanded. But when collapsed i'm getting the total for X category as...
March 19, 2012 at 1:42 am
I figured out that the issue is with case-sensitive. Actually i'm comparing two string variables, VarA and VarB and the values in it are as below
VarA = 'Test'
VarB = 'test'
Since...
March 14, 2012 at 10:40 am
Hm..That's good to know. Thanks for sharing it.
March 13, 2012 at 7:29 pm
Hi,
Just wanted to check if there is any way to achieve this. Thanks a lot in advance for your help!
Thanks,
March 13, 2012 at 9:10 am
Thanks Roy! The following fixed the issue.
1.Switched the sqlserver service logon account to ‘Local System’
2.Rebooted the server
3.Switched the sqlserver service logon account to ‘Domain/Account’
4.Rebooted the server
March 12, 2012 at 2:31 pm
Can you please explain this portion of your message a little bit in detail? " "I cut the data from the outer group and then put that data for the...
March 10, 2012 at 9:14 pm
Thank you so much!
March 8, 2012 at 8:15 pm
Hi,
When I elimiate NULL values using WHERE clause in the data set or by creating filter expression, i dont get that subcategory = NULL row on the report. I would...
March 8, 2012 at 1:29 pm
You are really awesome!! I've never seen this detailed explanation for a question on forum with screenshots. I owe you a lot!
Thanks again!
March 7, 2012 at 5:18 pm
Restarting the SQL Server service on the initiator side resolved the issue.
Thanks so much everyone for the suggestion!!
November 25, 2011 at 11:09 pm
Restarting SQL Server service on the initiator side fixed the issue.
Thanks so much everyone!!
November 25, 2011 at 11:06 pm
Viewing 15 posts - 31 through 45 (of 92 total)