Viewing 15 posts - 316 through 330 (of 660 total)
when i connect to Integration SErvices under tht MSDB
i get an error
" Failed to retrive data fro this request.(Micorsoft.Sqlserver.SmoEnum)
Additional information:
Login timeout expired
An error has occured while establishing a connection...
August 5, 2008 at 4:57 pm
Update Site
SET
Site.CorpOHPer,sp.CorpOHPer=isnull(sp.CorpOHPer,''),
Site.DivOHPer,sp.DivOHPer=isnull(sp.DivOHPer,'')
Site.RegOHPer=sp.RegOHPer,
Site.BurdenPer=sp.BurdenPer
from StagingSiteProfile sp
WHERE Site.SiteID=sp.SiteID
I am using ISNULL so that if there is a null value for that column I want to replace it by blank, buti get...
August 5, 2008 at 3:19 pm
After changing the settings and tried selecting excel sheet in sql i got this error
Msg 7399, Level 16, State 1, Line 1
The OLE DB provider "Microsoft.Jet.OLEDB.4.0" for linked server "(null)"...
August 5, 2008 at 2:28 pm
can i use this in sql serevr 2005
sp_configure 'Ad Hoc Distributed Queries', 1
August 5, 2008 at 2:23 pm
yeah i am trying to do that.
how cud i configure this...
Msg 15281, Level 16, State 1, Line 1
SQL Server blocked access to STATEMENT 'OpenRowset/OpenDatasource' of component 'Ad Hoc Distributed Queries'...
August 5, 2008 at 2:19 pm
DECLARE @Month int
set @Month=1
;WITH emps(empID)
AS
(
SELECT empID FROM
#tmpemp
)
select @month,hours
from emps inner join hours
on emps.empid=hours.empid
I get...
August 1, 2008 at 5:18 pm
Hey could any one give me a different approach than CTE's for this.
July 30, 2008 at 9:45 am
is this all we have to do
ALTER DATABASE
SET ALLOW_SNAPSHOT_ISOLATION ON
July 29, 2008 at 3:43 pm
Just with simple joins this is not working for me, may be i need 2 CTE's in place of 2 cursors as it was earlier.
Its not just CTE's but i...
July 29, 2008 at 2:29 pm
How about using
select * from ServerA
EXCEPT
select * from ServerB
I may get rows that are not matching in ServerA but how would I update rows in serverA from ServerB which...
July 24, 2008 at 12:56 pm
Viewing 15 posts - 316 through 330 (of 660 total)