Viewing 15 posts - 1,996 through 2,010 (of 2,268 total)
Depending on the business need and how much data you are willing to lose 1 hour T-Log backups a bit sparse, I would consider doing T-Log backups more frequently like...
August 1, 2008 at 4:59 am
No worries, took me a while to find it as well:)
August 1, 2008 at 4:54 am
You can expand the box below the Post Options box to see the last ten posts while replying
August 1, 2008 at 4:45 am
another way..
WITH TableOrdered as
(SELECT Col1, Col2 , ROW_NUMBER() OVER (ORDER BY Col1) AS TheOrder
FROM YourTable)
select Col1,Col2 from TableOrdered
where theorder = 2
August 1, 2008 at 3:50 am
have you enabled the databse to allow remote connections?
July 31, 2008 at 9:56 am
Can you post up the query and table defs ? then you should get some help..
July 31, 2008 at 9:37 am
Yes you can use the Shrink File task in SMSS,
Create a script from this if you want to know what has been run.
July 31, 2008 at 8:55 am
It is only meant for one user, but you can buy additional licenses for as many users that you need for Dev, Test and Demo.
July 31, 2008 at 8:49 am
No worries,
you could use the Left and Right functions.
I am not aware of any performance difference between the two and couldn't find anything aobut it on BOL.
July 30, 2008 at 10:12 am
SELECT cast(substring(CAST(yrqtr AS VARCHAR(6)),1,4) as int) as yr,
cast(substring(CAST(yrqtr AS VARCHAR(6)),5,2) as int) as qtr
from DwEnterprise.TimelyDischarge_Rpt
July 30, 2008 at 9:49 am
SELECT substring(CAST(yrqtr AS VARCHAR(6)),1,4) as yr,
substring(CAST(yrqtr AS VARCHAR(6)),5,2) as qtr
from DwEnterprise.TimelyDischarge_Rpt
July 30, 2008 at 9:33 am
go to Surface Area Configuration Manager under SQL tools on the server
Click on the db and remote connections,
click on the radio button for Local and Reomte Connections.
Also ensure...
July 30, 2008 at 8:50 am
Can you ping the server?
have you enabled remote connections on the sql 2005 server?
July 30, 2008 at 7:15 am
Viewing 15 posts - 1,996 through 2,010 (of 2,268 total)