Viewing 15 posts - 4,336 through 4,350 (of 6,394 total)
Either add a report header or footer, or create user parameters and assign them the values as an expression, I have personally not done the user params so cannot confirm...
July 13, 2012 at 4:32 am
I have the alocohol for the weekend lined up, 2 bottles of Innis & Gunn's, 2 bottles of Moorhouse brewery's Pendle Witches Brew and 2 bottles of Hoegarden Rose.
July 13, 2012 at 4:24 am
ToString() is not a valid method for the variables, if you want to convert it to a string use CStr
=CStr(Globals!PageNumber)
July 13, 2012 at 3:39 am
It generally wont I have found, usually down to parallelism where one thread is wating for others to complete, in that case while it is a waiting thread, its not...
July 13, 2012 at 2:38 am
Yes you will see blank login names for the same SPID in a parallel query, due to a SPID is linked to 1 user and 1 user only, so in...
July 13, 2012 at 2:36 am
No backups? Why not?
What is the output from the following command
DBCC CHECKDB <Database Name> WITH NO_INFOMSGS, ALL_ERRORMSGS
July 13, 2012 at 2:29 am
Have you checked your DNS servers to ensure that the IP on the name record match and there fore resolving correctly?
July 12, 2012 at 8:39 am
Define what you mean as difference?
Difference in schema?
Difference in data?
Difference in purpose?
My definition of a staging database is somewhere to temporarly load data into in an ETL process before loading...
July 12, 2012 at 7:48 am
Either find the missing transaction log backup or re-initialise logshipping from a full/diff backup depending on the database backup routines.
July 12, 2012 at 3:45 am
Yes it is normal for it to delete log files.
The issue you have is that something or someone has done a manual transaction log backup or deleted a trn file...
July 12, 2012 at 3:34 am
sp_help_log_shipping_secondary_database @secondary_database = ''
Run that on the secondary server in master and it will tell you the last restored file, then you can investigate what went on.
July 12, 2012 at 3:12 am
You will need to do the LS configuration in one day if you are doing daily full backups. If you cannot do this then I would suggest taking a...
July 12, 2012 at 3:04 am
With something like the below
--CREATE A LOGIN WHICH WILL BE USED AS AN IMPERSONATION ACCOUNT FOR PEOPLE TO SEND MAIL FOR THIS TRIGGER ONLY
USE [MASTER]
GO
CREATE LOGIN [mail] WITH PASSWORD='', DEFAULT_DATABASE=[msdb],...
July 12, 2012 at 2:59 am
The LSN's are out of sync, it looks like either a manual transaction log backup was taken and not shipped or something deleted the transaction log before it was copied...
July 12, 2012 at 2:53 am
Viewing 15 posts - 4,336 through 4,350 (of 6,394 total)