Viewing 15 posts - 121 through 135 (of 161 total)
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...
February 8, 2012 at 7:40 am
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....
February 8, 2012 at 7:37 am
Cadavre (2/7/2012)
Loundy (2/7/2012)
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...
February 7, 2012 at 8:51 am
February 7, 2012 at 8:03 am
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...
February 6, 2012 at 5:13 am
interesting - as far as i'm aware the files haven't been moved....
i'll have to do some more digging then
February 6, 2012 at 5:03 am
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
🙂
February 6, 2012 at 4:57 am
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...
February 3, 2012 at 7:24 am
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...
February 3, 2012 at 4:44 am
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...
February 3, 2012 at 4:19 am
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>
...
February 3, 2012 at 4:01 am
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...
February 3, 2012 at 3:55 am
Hi John,
I'm using SSMS to connect at this time not BIDS and yes i'm trying to connect from the same server.
February 3, 2012 at 3:43 am
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)
February 2, 2012 at 7:29 am
Viewing 15 posts - 121 through 135 (of 161 total)