Viewing 15 posts - 4,696 through 4,710 (of 6,395 total)
Thanks for the sample data and expected results, but one thing I would advise is to post them in a consumable format, the second link in my signature block details...
June 11, 2012 at 1:51 am
How up to date does the data in tableA need to be for querying?
You could use something like SSIS to copy data from server1 to server2, replication is also an...
June 11, 2012 at 1:33 am
Yes, if you have Enterprise licenses and impliment a scaled out deployment of SSRS servers.
June 11, 2012 at 1:28 am
You will need to uninstall SP4 and then install SP2. Make sure you backup all databases inc system databases before doing this and have a very large downtime window...
June 11, 2012 at 1:11 am
L' Eomot Inversé (6/8/2012)
Stefan Krzywicki (6/8/2012)
June 8, 2012 at 8:31 am
BaldingLoopMan (6/8/2012)
is there a way to temporarily turn off the writting to trans log for this process?
everything is written to the transaction log you cannot stop that, it all depends...
June 8, 2012 at 8:24 am
What account is your SQL server running as? Network Service? Local System? Domain account?
If possible, change the service account to a domain account as thats best practise solution, and...
June 8, 2012 at 8:12 am
Stefan Krzywicki (6/8/2012)
anthony.green (6/8/2012)
June 8, 2012 at 8:06 am
90 days thats a luxury, the company group policies here are typical user accounts get 45 days, and if your a domain admin your password expires every 14 days.
June 8, 2012 at 7:42 am
Daniel Bowlin (6/8/2012)
Ray K (6/8/2012)
anthony.green (6/8/2012)
Revenant (6/7/2012)
-- The Hitchhiker's...
June 8, 2012 at 6:59 am
well if you want to upgrade everything and if you cannot get a hold of media which is built on SP4 then you will need to uninstall and reinstall everything....
June 8, 2012 at 6:31 am
Logshipping is an option. Set it up, then when your ready to migrate, simply backup Server1's database logs with norecovery, and then restore that log on Server2 with recovery....
June 8, 2012 at 6:22 am
One option is dynamic sql, much like the below
declare @sql nvarchar(max), @age int, @id int
set @sql = '
select
*
from
test a
inner join
test1 b
on
a.id=b.module_id
where
a.id=@id
and...
June 8, 2012 at 6:12 am
You cannot compare a value to a null value, NULL is NULL and only ever NULL
What is NULL is it 0,1,2,3,4,5,'IDontKnowWhatIAm','ShouldIBeThisValueOf60834abc', so as there is no value it is excluded...
June 8, 2012 at 4:52 am
the N specifies that the following string is a NVARCHAR string
N'\\XXXXXXXX\W$\LOG_BACKUP\XXXXXXXX_tlog_201206072000.TRN'
Your actually backing up to \\XXXXXXXX\W$\LOG_BACKUP\, not the N drive
Edit
Mike beat me to it again
June 8, 2012 at 4:46 am
Viewing 15 posts - 4,696 through 4,710 (of 6,395 total)