Viewing 15 posts - 1,741 through 1,755 (of 2,268 total)
You could try and insert a tracer token to see what your latency is like, there may be network issues that are causing a problem
December 10, 2008 at 7:57 am
So you are moving the server that the access 2003 front-end is linked too?
when you move the access database to a new SQL server you will have to change the...
December 10, 2008 at 7:42 am
SanjayAttray (12/9/2008)
steveb (12/9/2008)
SanjayAttray (12/9/2008)
Both getdate() and CURRENT_TIMESTAMP returns same value. So, why two functions for same result?Can some one describe diff. between both function?
CURRENT_TIMESTAMP is ANSI code
GETDATE...
December 9, 2008 at 10:28 am
SanjayAttray (12/9/2008)
Both getdate() and CURRENT_TIMESTAMP returns same value. So, why two functions for same result?Can some one describe diff. between both function?
CURRENT_TIMESTAMP is ANSI code
GETDATE is not.
Like...
December 9, 2008 at 10:17 am
Alvin Ramard (12/9/2008)
Simple, look at both values and you'll see the difference. I guess the correct answer to your questions is that it depends what...
December 9, 2008 at 9:02 am
You really need to consider the size of your CMS and how many users you will be supporting on it. I would have a look at the higher-level business...
December 9, 2008 at 7:32 am
this part of the code
SELECT TotalCleared, CONVERT(char(10), ClearedDate, 101) AS ClearedDate
FROM CTE
GROUP BY...
December 9, 2008 at 7:20 am
SELECT top 10 * FROM [YourTable] Order by YourId Desc
It really depends on how your table is orderd, otherwise the results will not really mean anything
December 9, 2008 at 4:25 am
Open the file in a Hex Editor to check the commas are all there and that there are no hidden value codes causing havoc
December 8, 2008 at 9:39 am
If all your filenames are consistent then you should be able to use a combination of FINDSTRING to find the position of the last '_' and then use...
December 8, 2008 at 9:27 am
Go into File-Explorer and then delete them, but be absolutely sure you don't need them first.
Or Setup a maintanence plan to automaticaly delete the older backups based on file...
December 8, 2008 at 9:22 am
Do these values have quote identifiers (") around them in the flat file?
December 8, 2008 at 9:20 am
What are the constraints on the publishing table?
December 8, 2008 at 9:11 am
Did you re-build the merge replication after you changed the value of NOT FOR REPLICATION to On?
The constraints that merge replication add to the table may be causing this problem,...
December 8, 2008 at 8:05 am
For merge replication you need to have Not_For_Replication set to ON, this means that the value will not generate a new id when it is merged replicated.
It seems like...
December 8, 2008 at 7:09 am
Viewing 15 posts - 1,741 through 1,755 (of 2,268 total)