Viewing 15 posts - 4,606 through 4,620 (of 6,398 total)
Performing a log backup will make the log as re-usable, allowing the already allocated space to be re-used.
Log backups do not affect the differential backup.
June 14, 2012 at 3:44 am
It will contain all changes since the Full backup
So, If you backup FULL at 1am, then DIFF at 5am, 9am, 1pm, 5pm, 9pm.
To restore at 7pm, you need Full at...
June 14, 2012 at 2:34 am
Thanks Ian, now this just gets stranger, all drives are a 512 sector, which according to the connect articles shouldnt cause an issue with reading the default trace.
June 14, 2012 at 1:45 am
michaeljharper (6/13/2012)
I have forwarded 1433 TCP in and out and 1434 UDP in and out, can I check which port SQL Server is using from Management Studio?Thanks
You will need...
June 14, 2012 at 1:32 am
Have you checked the query and the syntax for sp_executesql?
June 14, 2012 at 1:26 am
You could also just add a new column with the BIGINT datatype, then issue a drop column for the text and sp_rename for the bigint column, saves dropping & recreating...
June 14, 2012 at 1:16 am
But the table has an identity column so you dont need to do the row_number() + 5.
If it didnt have an identity and you dont have an identity on the...
June 14, 2012 at 1:10 am
forgive my ignorance but do you know how to use the drill through to actually see what causes the alerts? if so should of got the tsql in question...
June 13, 2012 at 9:59 am
Without something which logs the two sessions statements you cant.
How did it alert you that the sessions where blocking? Do you have some monitoring software installed?
June 13, 2012 at 9:01 am
whats the definition of the source table?
June 13, 2012 at 8:53 am
First find out what SPID63 is doing, is it inside a transaction which hasnt been committed
select * from sys.dm_exec_requests
cross apply sys.dm_exec_sql_text(sql_handle)
cross apply sys.dm_exec_query_plan(plan_handle)
where session_id = 63
June 13, 2012 at 8:48 am
Sounds like you need to do port forwarding, so when I packet comes into your router for port 1433 it knows to pass it to the LAN IP of 192.168.0.10...
June 13, 2012 at 8:44 am
Can you provide table deffinition and sample data and your query?
June 13, 2012 at 8:41 am
You could build the data up including a row_number function adding 5 so that it starts from 6 and ends at 905.
INSERT INTO
sometable
SELECT
ROW_NUMBER() OVER(ORDER BY intcoloumn ) +...
June 13, 2012 at 8:32 am
Viewing 15 posts - 4,606 through 4,620 (of 6,398 total)