Viewing 11 posts - 1 through 11 (of 11 total)
SQL Server books online, for local installation, can be downloaded from http://technet.microsoft.com/en-ca/sqlserver/bb428874.aspx
September 29, 2008 at 10:13 pm
it is working with 100+ rows in my case.... have u tried without openquery?
select top 102 * from ORALINK..SCHEMA.ORATABLE
August 18, 2008 at 4:47 am
EXEC master.dbo.sp_addlinkedserver @server = N'ORA_LINK',
@srvproduct=N'Oracle', @provider=N'MSDAORA', @datasrc=N' '
then u can select from the above oracle database as below
select * from ORA_LINK..SCHEMA_NAME.TABLE_NAME
August 13, 2008 at 3:47 am
ROWIDs represent the physical location of a record/row.
And most important part is ROWID can change if the row is moved as in index organized or partitioned tables.
August 11, 2008 at 10:21 pm
the design is not very clear to me from the statement. however, joining the fact tables into one can be an approach
August 11, 2008 at 9:48 pm
SELECT DepSector, [00001111] as [DepRevenue_00001111],[00002222] as [DepRevenue_00002222], [00003333] as [DepRevenue_00003333] FROM DepRev
PIVOT
( max(DepRevenue) for DepId in ([00001111],[00002222],[00003333]))
AS pvt
order BY DepSector
note that: dynamic column creation is not supported in pivot,...
May 21, 2007 at 3:21 am
why dont u use sql server to create the job by just right clicking the dts and selecting the "schedule package" option? the job will still use dtsrun with encrypted...
April 17, 2007 at 2:55 am
April 17, 2007 at 2:34 am
space savings done by such changes are preserved within the database for future use. a shrinkdatabse might release the space to the OS.
April 17, 2007 at 2:26 am
this needs a trick to be applied... check the link below...
March 28, 2007 at 2:10 am
backup is a preventive measure, so u will have to backup first and then use the backup in case of failure. as u can expect, sql server will not give...
March 28, 2007 at 1:30 am
Viewing 11 posts - 1 through 11 (of 11 total)