Viewing 15 posts - 1 through 15 (of 33 total)
like this , use count and group by your field.
create table #a(text varchar(20))
insert #a values('abc')
insert #a values('abc1')
insert #a values('abc')
insert #a values('abc1')
insert #a values('abc')
select count([text]) , [text] from #a group by...
August 12, 2008 at 10:37 am
Resolved by creating an named query table from the Data source view.
That is..
Dropped my table dimworktyped. Instead from the data source view of the cube I created a new...
July 18, 2008 at 8:19 am
Actually yes this i quit an good solution. tho i would rather put this in a table in the master database š
thanx for the ideas
June 24, 2008 at 3:58 am
intresting...... these are some good ideas i'll try to check this out.
June 23, 2008 at 4:10 pm
select min(column name1 ) , min(column name 2),min(column name 3)
April 9, 2008 at 9:17 am
Brilliant , thax ... and yes i am doing new stuff, so i can alter my initial design.
April 8, 2008 at 11:05 am
Interesting how you can find a solution just 2 min after you ask for help š
It's not the best solution but it works.
create procedure test1 @list varchar(80)=null
as
begin
declare @sql varchar(max)
...
April 8, 2008 at 10:21 am
it might be that Iām only on my first cup of coffee, but i fail to see what you intend to gain by adding the GOTO lines, except only writing...
April 8, 2008 at 2:30 am
Thanx for the info.. What i will do is just redefine my stored procedure, so i'll filter down on user groups. I managed to find out how to use the...
April 7, 2008 at 11:38 am
Sorry , the previous quote was in regards to breaking the log chain
March 26, 2008 at 4:36 am
but if you do a full backup before the truncation
I was under the asumption that this could be avoided by doing full backup and transaction log backup before the...
March 26, 2008 at 4:35 am
Well. im using about 150 databases , so that varies. š
In cases where Transaction log size has been come an issue. We have scheduled an transaction log backup every 4...
March 26, 2008 at 3:47 am
first take a full backup.
after the full backup do an transaction log backup
then you should be able to shrink the file with
dbcc shrinkfile('logfile' , destination size)
if that dosen't work...
March 25, 2008 at 10:21 am
true.. the correct answer would be sys.sql_logins
March 10, 2008 at 8:24 am
Viewing 15 posts - 1 through 15 (of 33 total)