Viewing 15 posts - 301 through 315 (of 549 total)
I recommend you to visit the Red Gate website for support, and their forum is great at answering questions
http://www.red-gate.com/MessageBoard/viewforum.php?f=81&sid=3ce1593f0857f1f155d85e78bac7db82
I believe to integrate SQL Compare with Version Control software, you may...
November 19, 2008 at 8:27 am
Didn't read in detail
but for a SSRS report, if you try to use a field NOT inside its group
you can only use AGGREGATE functions or FIRST/LAST etc...
so you could have...
November 19, 2008 at 8:22 am
I would think it's doable, never done it
At times I create Alias in SQL Server Configuration Manager under the SQL Native Client Configuration
e.g. I can call it "Jerry" pointing to...
November 19, 2008 at 8:10 am
I have just changed 2 NAMED instances (on 2 servers in Active-Active cluster) via SQL Server Configuration Manager
No issues after restart successfully
e.g. "SQL Server 2005 Network Configuration"
Protocols for SERVER1, TCP/IP
Protocols...
November 19, 2008 at 8:07 am
jeffrey yao (11/18/2008)
"The scary part about being a new DBA is that you don't know the extent of what you don't know".
In...
November 18, 2008 at 9:50 am
SSC has an article recently covering the Default Trace
http://www.sqlservercentral.com/articles/SQL+Server+2005/64547/
November 18, 2008 at 9:08 am
I don't have a code handy for SQL 2000
but this one works in 2005 & 2008
--Author: Saleem Hakani (Microsoft Corporation)
--Email: Saleem@sqlcommunity.com
--Website: http://www.sqlcommunity.com
--Date: June 3rd 2008
--Purpose: Provide SQL Server Agent related...
November 18, 2008 at 8:54 am
I suppose it can work both ways
Personally I think Facebook profile is riskier than Google'ing and find one's posts in a SQL forum (which is related to one's job)
I have...
November 18, 2008 at 8:50 am
Not sure what the article is (no link)
but to get a source code of a stored proce (system or user)
sp_helptext sp_who2
Unless it's encrypted, it should give you the source code
November 17, 2008 at 9:29 am
If you ran that BACKUP command manually, does it still give you the error?
Maybe someone cleaned out some space?
And make sure it is writing to the correct location (namely, F...
November 17, 2008 at 9:17 am
above poster is right
USE msdb
SELECT TOP 100 *
FROM RESTOREHISTORY WITH (NOLOCK)
--WHERE destination_database_name IN ('XXX')
ORDER BY restore_date DESC
November 17, 2008 at 9:15 am
Does the new box freeze without SQL Server installed or running?
My bet is hardware too, but that's what every DBA likes to say 🙂
November 17, 2008 at 9:12 am
bang725 (11/17/2008)
_________________________________________________
Dim fso,fol,fx
set fso = CreateObject("Scripting.FileSystemObject")
Set fol = fso.GetFolder("F:\BACKUPS\")
For each fx in fol.Files
if datediff("d",fx.DateLastModified,now()) > 7 and right (fx.path,4) =".bak" then
fso.DeleteFile fx.Path
End if
next
set fso=nothing
____________________________________________________
goto- job - newstep...
November 17, 2008 at 9:07 am
Consider it just came out RTM in Aug 2008, SP1 may be a while
You should see SQL 2005 SP3 released before 2008 SP1 (SP3 is released as CTP/Beta already)
November 14, 2008 at 2:21 pm
You can use both (Windows or SQL)
Are you asking for the SSRS service account
or the report execution at run time?
Either way, you can use either
November 14, 2008 at 2:20 pm
Viewing 15 posts - 301 through 315 (of 549 total)