Forum Replies Created

Viewing 15 posts - 121 through 135 (of 161 total)

  • RE: extract string as xml

    first things that come to mind (without seeing any example code to go on) is using SUBSTRING and/or FOR XML

    read up on them both, unless someone is kind enough to...

  • RE: Can I Create noncluster index on primary key column

    kuna.venkatarao10 (2/8/2012)


    I have some questions

    --- Can i create non cluster index on primary key column

    ---when we use triggers in sqlserver

    ---How to avoid cursors in sqlserver 2008

    Pls help me

    1....

  • RE: Rw-write this Query?

    Cadavre (2/7/2012)


    Loundy (2/7/2012)


    why?

    Recursive CTE's are pro:

    http://msdn.microsoft.com/en-us/library/ms186243.aspx%5B/quote%5D

    Hmmm. . . it is after all still a loop.

    However, I'm not sure why you'd want to convert a recursive CTE into a...

  • RE: Rw-write this Query?

    why?

    Recursive CTE's are pro:

    http://msdn.microsoft.com/en-us/library/ms186243.aspx

  • RE: Cannot expand MSDB folder

    Possible explanation

    Quote:

    By default, a 64-bit computer that has both the 64-bit and 32-bit versions of an Integration Services command prompt utility installed will run the 32-bit version at the...

  • RE: Cannot expand MSDB folder

    interesting - as far as i'm aware the files haven't been moved....

    i'll have to do some more digging then

  • RE: Cannot expand MSDB folder

    We've managed to fix the problem.

    The registry key pointing to the msdtssrvr.ini.xml file was pointing to D:\Program Files\Microsoft SQL Server\100\Binn

    it should have been D:\Program Files(x86)\Microsoft SQL Server\100\Binn

    🙂

  • RE: Cannot expand MSDB folder

    Our dba's have told me that the account is fine.

    Their suggestions were:

    Restart the server

    Install Sp1

    Restart of the server (its a pre production server so no biggie) didn't fix...

  • RE: Cannot expand MSDB folder

    i would "assume" so, were using network services for the SQL Server Browser and FT Daemon Launcher and there working ok. Unfortunately I don't have access to system permissions...

  • RE: Cannot expand MSDB folder

    it really does have a v at the end 🙁

  • RE: Cannot expand MSDB folder

    hi John,

    I can connect to the db engine fine through ssms.

    Were using 64 bit standard edition:

    Microsoft SQL Server 2008 R2 (RTM) - 10.50.1600.1 (X64) Apr...

  • RE: Cannot expand MSDB folder

    Here is the ini.xml file.

    <?xml version="1.0" encoding="utf-8"?>

    <DtsServiceConfiguration xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">

    <StopExecutingPackagesOnShutdown>true</StopExecutingPackagesOnShutdown>

    <TopLevelFolders>

    <Folder xsi:type="SqlServerFolder">

    <Name>MSDB</Name>

    <ServerName>UKSTG66PCSDB01v</ServerName>

    ...

  • RE: Cannot expand MSDB folder

    Hi John,

    Thanks for the response.

    I can connect to the integration service through SSMS just can't expand the folder. I'm using the name of the server to connect (also...

  • RE: Cannot expand MSDB folder

    Hi John,

    I'm using SSMS to connect at this time not BIDS and yes i'm trying to connect from the same server.

  • RE: Need Help to write Purge Job on Large table

    this will delete anything older than 90 days based on CreatedDate

    DELETE FROM dbo.logins

    WHERE CreateDate < CONVERT(CHAR(10),DATEADD(DD,-90,GETDATE()),121);

    i.e, anything older than 2011-11-04 (assuming its run today)

Viewing 15 posts - 121 through 135 (of 161 total)