Viewing 15 posts - 271 through 285 (of 1,655 total)
One of my favourites is SSMS Tools. Though it's not really for cubes or RS, it adds a lot of nice featurees to SSMS.
You might also find something interesting...
June 9, 2009 at 3:44 am
vrabhadram (6/9/2009)
HI,I'm creating indexed view:
create view vw_userdata
WITH SCHEMABINDING
AS
SELECT login_ID
, dbo.fxn_get_userfullname(login_id) as username
FROM tblUsersdata
it's giving the error like
Cannot schema bind view 'vw_userdata'. 'dbo.fxn_get_userfullname' is not schema bound.
The error should tell you...
June 9, 2009 at 1:58 am
First thing I would check is if the databases with no t-log backup are in SIMPLE RECOVERY.
June 5, 2009 at 5:06 am
The short answer would be NO.
But maybe you can explain a bit more what you are trying to achieve.
June 5, 2009 at 4:59 am
Yes, varchar(1) is definitly wrong.
Also the question wasn't which datatype uses the least space, but what is best.
But how do you define best?
June 5, 2009 at 3:10 am
This shouldn't be a problem.
No need to stop/pause replication. Only if you use transactional repl with immediately updating subscribers, you won't be able to make any changes on the...
June 5, 2009 at 3:03 am
Like Gail already asked what error do you get?
June 5, 2009 at 2:42 am
You used the wrong parameter. Use /USESYSDB, /SQLUSERDBDIR and /SQLUSERDBLOGDIR.
For more info see http://msdn.microsoft.com/en-us/library/ms144259.aspx
June 5, 2009 at 2:37 am
I've chosen for nchar(1) because it only says that the value won't be NULL or empty, but there's no limitation on the characters used. Also depending on your collation sometimes...
June 5, 2009 at 2:18 am
Gaby Abed (6/4/2009)
I'm visiting Amsterdam this December, staying with a sister. I'm not Dutch but was wondering what some great places to visit outside...
June 5, 2009 at 2:00 am
The code works fine on SQL 2000, but could it be that your server is using a case sensistive collation?
I noticed that the columnnames somteines use capitol letters and...
June 5, 2009 at 1:45 am
About how to add a matrix to your report see here:
http://msdn.microsoft.com/en-us/library/cc627441.aspx
and
http://msdn.microsoft.com/en-us/library/ms157334(SQL.90).aspx
About how to make a dynamic PIVOT, when you don't know3the number of columns see here:
http://weblogs.sqlteam.com/jeffs/archive/2005/05/02/4842.aspx
June 5, 2009 at 12:30 am
arup_kc (6/4/2009)
I am using SSRS and want an alternative to Crystal reports cross tab tables.Thanks in advance.
Then use a matrix in your report. Or as I said before use a...
June 4, 2009 at 7:22 am
Maybe I don't understand you correctly, but wouldn't this work?
SELECT * FROM myTable
where c d
June 4, 2009 at 5:51 am
Viewing 15 posts - 271 through 285 (of 1,655 total)