Viewing 15 posts - 46 through 60 (of 89 total)
You shouldn't have any problems is you are purely working with datetime, as SQLBill states these are represented the same internally regardless of you regional settings.
However you may experience...
August 11, 2004 at 4:46 am
I've not tried it, but have you investigated using Hetrogenious Replication, either for a Snapshot or for merge (not sure which, if either, is possible
June 30, 2004 at 2:02 am
Hi SQLBill,
You should be able to execute sp_password from Access in VBA by creating an ADO command object with parameters for the old and new passwords. These can...
June 18, 2004 at 10:19 am
Hi SQLBill,
I have a web app which allows super users (application administrators) to manager SQL Server logins on-line and standard users to modify their own passwords.
My ASP page calls sp_password to change...
June 18, 2004 at 3:08 am
One tool that I've heard very good things about (but not used myself) is Clementine (http://www.spss.com/clementine/).
Has anyone out there had any first hand experience interfacing MS SQL Server...
June 7, 2004 at 2:31 am
Try using BACKUP from the source and RESTORE on the destination then. It doesn't transfer Jobs, Errors, objects in master or logins, but it does work.
April 27, 2004 at 8:29 am
There's an article on MSDN with this error:
http://support.microsoft.com/default.aspx?scid=kb;en-us;274463
In summary it says if the destination server is started with the Local System account, or an account that does not have local...
April 27, 2004 at 2:11 am
One issue to watch for when using DTS to import MS Access data is that Access date/time fields support 'older' dates (100 AD through to 9999 AD) compared to the...
March 17, 2004 at 3:00 am
I had a problem with performance accessing data using views from two databases. In the end I combined the two databases into one and the performance improved considerably.
This may...
October 15, 2003 at 3:04 am
The problem with using DATEDIFF() for you criteria is that DATEDIFF will round to the nearest number, and so cannot be used in this way, for example, if you run...
October 15, 2003 at 2:41 am
Use Enterprise Manager. Select the SPs you wish to transfer, right click and choose Generate SQL Script. Select any additional funcitons or views that you wish to script and set...
October 10, 2003 at 2:35 am
Another option would be to have the stored procedure run the view using a SELECT statement. This wouldn't work if you used an updateable view though.
Alternatively if you wish...
October 6, 2003 at 1:57 am
quote:
Was thinking. How about a SQL assistant? It can hover around EM and QA
It would...
October 2, 2003 at 3:41 am
That may interrupt the agent and cause an error, but I wouldn't have thought that it would remove the agent from the server...
September 30, 2003 at 3:07 am
You can coax SQL into scripting table updates. Try running something like:
SELECT 'UPDATE Messages SET ArabicMsg = ''' + REPLACE([ArabicMsg],'''', '''''') + ''' WHERE...
September 30, 2003 at 3:01 am
Viewing 15 posts - 46 through 60 (of 89 total)