Viewing 13 posts - 31 through 43 (of 43 total)
My best record are almost two billion of records with IMS(pharma sector).
May 18, 2006 at 12:54 am
On the other hand, this works but not very perfectly...
insert into testspaceused
EXEC SP_MSFOREACHDB 'USE BDGENERAL; EXEC SP_SPACEUSED G03OFIC'
testspaceused is the table above created...
March 2, 2006 at 11:49 am
On the other hand, this works but not very perfectly...
insert into testspaceused
EXEC SP_MSFOREACHDB 'USE BDGENERAL; EXEC SP_SPACEUSED G03OFIC'
testspaceused is the table above created...
March 2, 2006 at 11:49 am
I've created this:
CREATE TABLE TESTSPACEUSED (
FI varchar (60),
ROWS1 INT,
rESERVED varchar(20),
data varchar(20),
index_size varchar(20),
unused varchar(30)
) ON [PRIMARY]
GO
And then I tried this statement, obtaining unsuccessful results:
SELECT *
FROM TESTSPACEUSED inner join (sp_spaceused...
March 2, 2006 at 11:29 am
hi SqlBill,
Unfortunately, that doesn't works. I am almost sure that might have any solution for that. Apparently BOL no says nothing about that.
Think, think
March 2, 2006 at 11:24 am
Sorry for that. Here you've got it:
CREATE TABLE [dbo].[Via_Peticiones] (
[CodPeticion] [char] (12) NOT NULL ,
[Estado] [char] (1) NOT NULL ,
[Dni] [char] (10) NOT NULL ,
[Nombre] [varchar] (255) NULL ,
[EMail] [varchar]...
March 2, 2006 at 10:38 am
We had issues when developers were creating temporary tables and TEMPDB and that database own a different collation than source database, which causes a lot of errors.
Finally, they decided...
March 2, 2006 at 9:40 am
that finally works properly:
REVERSE(substring(REVERSE(DATASOURCE),1,charindex('\',REVERSE(DATASOURCE)) -1)) AS F
Thanks to all for your comments.
March 2, 2006 at 2:03 am
Yeah, it was just that.
March 2, 2006 at 12:53 am
Thanks a lot for your comments Ian.
All the best,
February 28, 2006 at 5:10 am
I work out, finally I've founded the answer to my issue usign REVERSE and CHARINDEX functions:
REVERSE(substring(REVERSE(DATASOURCE),1,charindex('\',REVERSE(DATASOURCE)) -1))
February 28, 2006 at 5:08 am
It's unbelievable. As time goes by we have got less gadgets, machines all over our homes.. I am trying to convice my wife to have a big laptop for see...
February 28, 2006 at 1:53 am
Could you please kindly to post DDL statements in order to have a very comprehensive view of such issue?
Thanks
February 27, 2006 at 3:47 am
Viewing 13 posts - 31 through 43 (of 43 total)