Viewing 15 posts - 286 through 300 (of 362 total)
have you tried putting single quotes around the value? i.e. 'mm/dd/yyyy mm:hh:ss'
December 18, 2003 at 11:28 am
Try
master..sp_tables tables, information_schema
The views only exist in the Master db, but will use the sysobjects from the currnt db.
December 18, 2003 at 11:15 am
If I were you, I'd make a view. Even if for right now it's just SELECT * FROM Table. This way you can more easily test various query senarios by...
December 18, 2003 at 11:03 am
Thanks David, I'll give it a try and report back.... setting up a "very slow test senario" takes me a few.
December 18, 2003 at 10:59 am
Can you provide an example of the TSQL code you are using when calling the SP?
December 18, 2003 at 10:57 am
A good option may be to do "vertical partioning"... Create separate tables for data, then create a VIEW combining the tables. This is especially nice in SQL Server... When creating...
December 18, 2003 at 9:42 am
Found something interesting...
xp_getfiledetails [Last Written Time] has the timestamp of the mobile PC file until it has completed it's copy. After completion, [Last Written Time] shows target server time....
December 18, 2003 at 9:13 am
I do not know specifically if the "IN (...)" has a size / items limit, but I've submitted lengthy SQL statements to SQL Server without problems. One exception I have...
December 18, 2003 at 7:51 am
Brian, both are good ideas, but changing the mobile application in this manner is not feasable. WINPC deposits multiple other files also etc. and complexity of this issue is more...
December 18, 2003 at 7:20 am
Thanks David.
Seems like xp_fileexist ruturns "OK" data as soon as the file exists, but prior to the file being available to import. I'm looking for a "file property" something...
December 18, 2003 at 7:12 am
SQL Server VIEWs can even limit the data that may be inserted / updated if you use the WITH CHECK OPTION in the view.
CREATE TABLE A (ID Int,...
December 17, 2003 at 3:23 pm
Can you register it once using the servername, then again using the IP, or even multiple IPs?
December 17, 2003 at 3:14 pm
File is deposited from a WINPC connected to server using a "UNC Share", then VB application performs a WINAPI "File Copy".
Each mobile WINPC deposits it's own, same name every...
December 17, 2003 at 3:09 pm
Select SubString(Convert(Varchar(25), GetDate(), 9), 13, 8) + Right(Convert(Varchar(25), GetDate(), 9), 1) + 'M'
December 17, 2003 at 12:40 pm
Select Convert(Varchar(8), GetDate(), 8)
December 17, 2003 at 12:25 pm
Viewing 15 posts - 286 through 300 (of 362 total)