Viewing 15 posts - 136 through 150 (of 484 total)
Have you checked that the machine time on both server and client are the same? I had a similar issue at one client site (not SQL Server, but using Windows...
January 5, 2007 at 1:31 pm
...and taking that a small step further, make it a persisted computed column, so it's done once and automatically with application involvement.
January 5, 2007 at 9:01 am
Here is a code snippet from an old project I had on my archives. I don't have VB6 loaded to test this to make sure (I thought it was a little...
January 5, 2007 at 5:51 am
Bob;
But the same condition applies. If their are 2 rows in B that match to 1 row in A, you will have 2 rows returned since there will different values...
January 4, 2007 at 3:20 pm
Are you sure the jobstep is completing? Or are you assuming so because the backup file is there. Could it be hanging doing a verify of the backup?
January 4, 2007 at 1:42 pm
Your tables B or C have more that one row that matches a single row in A. For instance:
Table A ID ----- A B C
Table B PK_ID ID ------- ----- 1 ...
January 4, 2007 at 1:39 pm
No problem.
Parameters are the same...
January 4, 2007 at 11:33 am
However, if there are rows for the same emp_id and sales_date, you will still get multiple rows for a emp_id. For instance, if emp_id 1831 had two orders on 6/10/06:
emp_id |...
January 4, 2007 at 10:58 am
Easier than trying to do date string manipulation in TSQL is to use the SQLMAINT utility. You can specify to do TLog backups (-BkUpLog), remove old backups (-DelBkUps), and it...
January 4, 2007 at 10:42 am
Hopefully you are:
If these are true, then...
January 3, 2007 at 8:49 am
I have to very strongly disagree. Storing files outside of the database invariably leads to lost files, unauthorized or inappropriate access of the files, and eventual data integrity issues (broken...
January 3, 2007 at 5:28 am
The key in your VB6 app will be to convert the image to byte data array, use ADO recordsets for data access, and use GetChunk and AppendChunk to read/write the...
January 2, 2007 at 1:18 pm
Not that it matters now (since you have already ordered a new system), but you don't mention 1) how much memory and how fast your disks are in the PIII...
January 2, 2007 at 1:10 pm
I do not believe that you need to have a clustered index. Without a clustered index, the rows are likely physical ordered in the order they were added. (Perhaps, if...
January 2, 2007 at 12:46 pm
RowGUID are not only for replication, though they are required for replication.
ADO.Net and ADO also use RowGuid (if it is set on a table) for identifying rows for disconnected...
January 1, 2007 at 9:54 am
Viewing 15 posts - 136 through 150 (of 484 total)