Viewing 15 posts - 4,396 through 4,410 (of 6,400 total)
Please can you read through the second link in my signature below on posting code and data for the best help.
We would need the DDL of the tables along with...
July 6, 2012 at 3:00 am
You wont be able to create a clustered index on them two columns as your primary key is already clustered.
You would first need to drop your primary key and re-create...
July 6, 2012 at 2:57 am
The replace function will do what you need
UPDATE TableA SET Col1 = REPLACE(Col1,'£','')
July 6, 2012 at 2:47 am
For keeping the read-only copy up to date, could you not do a sort of make shift logshipping configuration, assuming that the recovery model is FULL or you are allowed...
July 6, 2012 at 2:05 am
in the subreport properties are you passing in the parameters from the parent report or some other values?
July 5, 2012 at 8:48 am
Could use an expression
=FORMAT(Today(),"dd/MMMM/yyyy")
Can experiment with the string format, just remember that capital M is month and lower m is minutes.
July 5, 2012 at 8:37 am
Only thing I can think of is to do your initial load and a second load to a different DB.
Then to sync, load into that different DB and use something...
July 5, 2012 at 8:13 am
Why leave the data in access, do a one time import to sql then point the access front end at SQL instead?
July 5, 2012 at 7:44 am
Also provide the deadlock graph if you have it, if not enable traceflag 1222 or use extendend events or a WMI query to capture the deadlock graph.
July 5, 2012 at 2:57 am
Hi.
If you would be so kind as to read the second link in my signature on posting code, we would required DDL of the tables views indexes and sample data,...
July 5, 2012 at 2:20 am
14420 is no TX backup of primary database, I suggest fixing why you cant take TX backups of the primary DB.
(Edit, got my 14420 and 14421 errors the wrong way...
July 5, 2012 at 1:48 am
Could also be a kerberos issue is the SPN's havn't been setup to allow double hopping.
July 5, 2012 at 1:44 am
Take a look at BEGIN TRY along with a BEGIN CATCH aswell as @@Error
July 5, 2012 at 1:40 am
Could of been SQL injection, especially if your using sa as the apps login.
All they need to do is enabled xp_cmdshell and enter a Regini.exe command via xp_cmdshell to change...
July 4, 2012 at 10:29 am
Viewing 15 posts - 4,396 through 4,410 (of 6,400 total)