Viewing 15 posts - 1,306 through 1,320 (of 1,417 total)
The time-difference between the two computers are to large. See if the answer on these two websites give you the solution:
http://support.microsoft.com/kb/297234
http://suppot.moonpoint.com/os/windows/domain/clocks-skewed.html
October 6, 2008 at 6:23 am
I thought putting the integer value 500000 into a varchar(5) would result in a string with value '50000' (removed last 0). Now I learned it's resulting in a string with...
October 6, 2008 at 5:59 am
You can try to periodically run a job that checks if a new database is added. If so, grant users the permissions to that database (using dynamic SQL?).
October 3, 2008 at 5:48 am
You need a network-service account when the service needs to read from or write to a network location. When this is not required you can use a local account.
October 3, 2008 at 5:44 am
Did it ever run correct? If so, what has changed?
Under what service-account is the service running? Try using the same account as the SQL Server Engine Service.
October 3, 2008 at 5:40 am
Matt Miller (9/26/2008)
September 29, 2008 at 2:58 am
It's easier to add filters to your reports to only use data before {today}-00:00hr.
Even when you start a job at exact 24:00hr it can take some time before the action...
September 26, 2008 at 5:55 am
try this:
SELECT *
FROM [Option]
LEFT OUTER JOIN
(SELECT VehicleOption.OptionID, VehicleOption.VehicleOptionID, VehicleOption.VehicleID, VehicleInfo
FROM VehicleOption
LEFT OUTER JOIN Vehicle ON VehicleOption.VehicleID = Vehicle.VehicelID
WHERE VehicleInfo = 'TOYOTA' --...
September 25, 2008 at 6:37 am
To prevent loss of speed with your queries without the WITH (NOLOCK) option, you must keep all exclusive locks (INSERTs, UPDATEs) to a minimum. That means optimizing the code to...
September 25, 2008 at 6:04 am
swapshines9 (9/24/2008)
Now I need to create sp that insert values in to the third table and save, but the EmpDeptName should not be visible in the backend. Actually I had...
September 25, 2008 at 3:45 am
I quess a UPDATE-trigger would be fired multiple times, but I'm not sure. You can test this by letting the trigger add a row with the updated values to a...
September 25, 2008 at 3:37 am
The_SQL_DBA (9/24/2008) if not what is the level of risk we are talking about here?
Your environment is working at this moment, so you could leave it as is. But invalid...
September 24, 2008 at 7:48 am
If you have to change several columns, try to split up the changes in portions you can handle. Begin with adding 1 (empty) column. Fill this column with converted datetime...
September 24, 2008 at 7:35 am
Primary Key can only contain unique values. You second insert tries to add value 1, 2, 3, 4 and 5 to the primary key but these values allready exist, thus...
September 24, 2008 at 5:43 am
Viewing 15 posts - 1,306 through 1,320 (of 1,417 total)