Viewing 15 posts - 151 through 165 (of 530 total)
But that only means that your duedate varchar column always contains dates in the format YYYYMMDD...
Here the problem is that it is different for different records in the database.
Why...
July 26, 2006 at 7:29 am
And that I fully agree with
July 26, 2006 at 7:18 am
I agree, you have no need for DTS in this case.
But I disagree with that you cannot get speed increases if your SP only queries one table (imagine aggregation functions...
July 26, 2006 at 6:53 am
Hello!
This leads to quite a problem parsing your data. But if you know that these two are the ONLY types of dates inserted (somehow I would verify it VERY carefully)...
July 26, 2006 at 3:57 am
...and if the Excel team hasn't fixed the bug with the 'guess rows' parameter you should watch out for wrong data anyway. If the Excel Import determines that one column...
July 25, 2006 at 7:51 am
...and as we all know it is a BIG no-no doing SELECT ... INTO ... FROM ... since it holds locks on a lot of system tables for the duration...
July 25, 2006 at 7:46 am
Okay, if they are not in tempdb they are not true temporary tables. Taskpad is a MS tool that relies on the db statistics and might have some errors if...
July 25, 2006 at 4:47 am
Remember that an dynamic SQL is always executed with the same permissions as the user executing the dynamic SQL has.
I.e. if in an SP you have dynamic SQL you have...
July 25, 2006 at 3:36 am
If you are sure the format of your varchar, in your table, is always the same or implicitly convertible to a date (which it seems like it is not in...
July 25, 2006 at 3:29 am
Encrypting a SP only affects the SP definition, not the actual SP. Which means it works exactly as before with the notable exception that you cannot view the 'text' that...
July 25, 2006 at 3:25 am
If they are true temporary tables they reside in the 'tempdb' database. Every SQL Server restart autmatically drops 'tempdb' and recreates it.
Hence all true temporary tables or objects in 'tempdb'...
July 25, 2006 at 3:21 am
Hi,
You cannot devide one datafile between two filegroups.
One filegroup can have many files.
One file can belong to maximum one filegroup.
One DB can have many filegroups.
One filegroup can belong to...
July 25, 2006 at 3:11 am
I do not know what you mean by an IDX database. SQL Server databases (usually) have the extensions .MDF (data file) with an associated .LDF file (log file).
How do you...
July 25, 2006 at 3:04 am
I do not really see the connection between SQL Mail and that product. Unless you start fiddeling about with the system SPs for SQL Mail and it is still just...
May 18, 2006 at 4:06 am
Viewing 15 posts - 151 through 165 (of 530 total)