Viewing 15 posts - 781 through 795 (of 1,292 total)
Right click on the SQL Server in SSMS and select properties.
In the properties dialog, you have multiple pages in the left page, select security page.
It will display the current...
December 1, 2009 at 7:13 pm
That query will not work. Why and other info, its better you read Books Online.
Use have many options to work with of which the below is 2 ways.
select e.entID, e.entShortName,...
December 1, 2009 at 2:21 pm
Would like to reiterate what John said, more information please.
December 1, 2009 at 1:22 pm
dmoldovan (12/1/2009)
Bru Medishetty (12/1/2009)
dmoldovan (11/30/2009)
December 1, 2009 at 12:54 pm
richardn-1128243 (12/1/2009)
The data tyep is a [datetime], as it was in SQL2005 - I take it that [datetime2] is now the equivalent in SQL2008?
I tested and confirmed that.
You either...
December 1, 2009 at 12:34 pm
Use this Script.
DECLARE @HOURS INT
SET @HOURS = 24
CREATE Table #ErrorLog (ErrorLog varchar(1000),ContinuationRow Int)
Insert into #ErrorLog (ErrorLog,ContinuationRow)
EXEC sp_readerrorlog
Delete from #ErrorLog
where (LEFT(LTRIM(ErrorLog),4) NOT LIKE Datepart(YYYY,getdate()) and ContinuationRow = 0)
OR ContinuationRow...
December 1, 2009 at 12:11 pm
kevinsql7 (12/1/2009)
December 1, 2009 at 12:01 pm
May I suggest you to visit the blogs section of my site (site address in the signature) and look for the article on Nov 3rd "Deploying SSIS Packages"
Post here...
December 1, 2009 at 11:23 am
Yes, you can set up movement of data between different databases on same server or different servers.
You need to script the tables that you need (at source) and create the...
December 1, 2009 at 10:55 am
tim_breslin (12/1/2009)
I was asking on behalf of someone else so I'm not 100% sure what they're trying to achieve....Sounds like fun though...
I guessed so ...:-)
December 1, 2009 at 9:37 am
I did read in some best practices to have the log file of size 20% with respect to your database. In this case of db file, it would be roughly...
December 1, 2009 at 9:33 am
ldstpete (12/1/2009)
Oh right, also - what about transferring the users, do you recommend the use of sp_help_revlogin?Thanks!
Yes, sp_help_revlogin is the best way to transfer logins.
You may be interested to...
December 1, 2009 at 9:26 am
You can edit the maintenance plans and when in design mode, you need to click on the icon. (See pictures is attached). You can enable extended logging and also choose...
December 1, 2009 at 9:20 am
george sibbald (12/1/2009)
Bru Medishetty (12/1/2009)
I wanted to know by not using whygood point. Wasn't there a TV/radio program once where you had to do that?
I am not sure.
All I wanted...
December 1, 2009 at 8:47 am
doug turner (12/1/2009)
December 1, 2009 at 8:35 am
Viewing 15 posts - 781 through 795 (of 1,292 total)