Viewing 15 posts - 1 through 15 (of 23 total)
The file uploaded to us is that just a text file, one line of text is a record, each column is (x) characters long. Using a user-defined function in SQL...
February 7, 2012 at 11:26 am
If your clients are using SQL Server 2005, I think, and later, you could use the .net framework and SMO to create an exe that restores the backup or runs...
March 11, 2011 at 9:57 am
I just did an export on some sample data.
TeamMemberID|DirectoryID|TeamID|Section|Email2|Phone1Type|Phone2|Phone2Type|Phone3|Phone3Type|Phone4|Phone4Type|Phone5|Phone5Type|Phone6|Phone6Type|Airport1|Airport2|TraineeYN|AlternateYN|MemberOf|Reminder|PhotoID|Unavailable|AlternateInfo|OrderID|DispatchName|DispatchCode|Username|Password|IMTEmail|LastUpdated|RoleID|Position|Phone1Ext|Phone2Ext|Phone3Ext|Phone4Ext|Phone5Ext|Phone6Ext|Deleted|GeneralInfo
2111|6233|93|Safety||H|555-555-5555|W||M||W||W||W|||False|False|S|0||||1||||||2008-10-17 14:18:00|2||||||||False|
2128|825|93|Plans||W||W||W||W||W||W|||False|True|S|0||||4||||||2008-10-17 14:20:00|2|Other|||||||False|
2129|1867|93|Command||W||W||W||W||W||W|||False|True|S|0||||3||||||2008-10-17 14:20:00|2||||||||False|
2130|3|93|Logistics||W||W||W||W||W||W|||False|True|S|0||||2||||||2008-10-17 14:19:00|2|LLC Asst. Center Manager|||||||False|
2131|167|93|Safety||W||W||W||W||W||W|||False|True|S|0||||5||||||2008-10-17 14:20:00|2|Computer systems interaction designer|||||||False|
2132|1|93|Operations||W||W||W||W||W||W|||False|True|S|0||||6||||||2008-10-17 14:20:00|2|Programmer|||||||False|
2133|1134|93|Information||W||W||W||W||W||W|||False|True|S|0||||7||||||2008-10-17 14:20:00|2|Application Architect|||||||False|
2135|680|93|Finance||W||W||W||W||W||W|||False|True|S|0||||8||||||2008-10-17 14:21:00|2|SCA Intern|||||||False|
2136|2|93|Command||W||W||W||W||W||W|||False|True|S|0||||9||||||2008-10-17 14:21:00|2||||||||False|
2137|6234|93|Operations||W||W||W||W||W||W|||False|True|S|0||||10||||||2008-10-17 14:21:00|2||||||||False|
2138|70|93|Safety||W||W||W||W||W||W|||False|True|S|0||||11||||||2008-10-17 14:21:00|2|Public Information Officer|||||||False|
2139|494|93|Safety||W||W||W||W||W||W|||False|True|S|0||||12||||||2008-10-17...
October 27, 2008 at 11:50 am
I have seen is done where you use temporary tables and timestamps, then by grouping and ordering you loop through each one updating the OrderID, but that is probably not...
October 27, 2008 at 11:24 am
OK. How do I actually know about decoding it, however?
June 24, 2008 at 10:13 am
Thank you all very much. I will take this into consideration. I am most familiar with the backup/restore operations, so this seems like a good solution. Thanks...
March 3, 2008 at 10:16 am
The last time I tried a backup/restore a ran into some incompatibility issues between the two versions of SQL Server and my database. Is there a way to specify...
February 28, 2008 at 1:09 pm
It originally started with using those constructs, but they receive even more obscure errors like "Microsoft.Jet.OLEDB.4.0 reported an error..." But a linked server route fixed that. I wish we were...
August 31, 2007 at 10:13 am
I am trying to open and query a Microsoft Access "like" database from SQL Server 2000 using OpenDataSource. This will work for a little while, but if...
August 17, 2007 at 10:25 am
Thank you so much for confirming what I already had thought. This thing is riddled with lazy coding, no definite user workflow or progression, documentation, and the list goes on...
July 25, 2007 at 8:03 pm
This usually happens when the user first comes to the application, so it is when the application needs to get data. When I went through and audited the code, I...
July 22, 2007 at 12:15 pm
CREATE PROCEDURE [dbo].[GetWFSAInfo]
@WFSAID int
AS
SELECT WFSA.*, FirstName, LastName, EmailAddress, LoginName FROM WFSA, WFSAUsers
WHERE WFSAID=@WFSAID AND WFSA.CreatorID = WFSAUsers.UserID
GO
I personally do not like the FROM clause. I was always taught to...
July 22, 2007 at 11:49 am
Viewing 15 posts - 1 through 15 (of 23 total)