Viewing 15 posts - 736 through 750 (of 2,038 total)
First
Start -> Programs -> Microsoft SQL Server 2005 -> Configuration Tools -> SQL Server Configuration Tools
Then
SQL Server Network Configuration -> Protocols for MSSQLSERVER
Restart the SQL Server Service. If you are...
June 5, 2009 at 9:11 am
Hi
I would start with the DELETion of removed data. After that use an UPDATE with OUTPUT to update the existing data and remember their ids. At last you can use...
June 5, 2009 at 9:01 am
Ensure that you are calling your procedure on correct database (check connection string).
Since you are using VB; avoid any "On Error Resume Next"/"On Error GoTo 0". Check if you get...
June 5, 2009 at 8:33 am
I'm not sure if a temp table is the correct way to go in this case. It will be removed immediately after your batch file disconnects from database.
I would use...
June 5, 2009 at 8:29 am
WayneS (6/4/2009)
For a large list, use XML. See my article[/url] that covers this. It even includes a comparison to the...
June 5, 2009 at 5:05 am
Be careful with master.sys.fn_varbintohexstr. It is a undocumented function and MS changed in SSE2k8 (return value becomes VARCHAR(MAX)). It might be changed/renamed/removed in future versions.
June 4, 2009 at 7:29 am
Hi
Could you explain more detailed why you are looking for an object oriented database? Why SQL Server?
Flo
June 4, 2009 at 7:22 am
As Jack already wrote. If you work with batches you should have a look for SSIS or bcp. Import the complete batch into staging tables. After this you are able...
June 4, 2009 at 5:37 am
The answer for the correct technology depends on the executing process.
If this should be done by a DBA/Maintenance job on server I would advice xp_cmdshell because it is an available...
June 4, 2009 at 5:32 am
Hi Lynn
Lynn Pettis (6/1/2009)
June 2, 2009 at 8:57 am
Jack,
Would a "Person_Unit_Relationships_Hist" table be an option? You keeps you main table very small and you are still able to get historic information. Since your table is a many to...
June 1, 2009 at 1:01 pm
Works fine on my system. Did you execute the complete script (including the IF EXISTS -> DROP)?
I copied the procedure and changed the SELECT to an existing table in my...
June 1, 2009 at 12:32 pm
Jeff Moden (6/1/2009)
Did they, by any chance, ask you how you like your pork chops cooked?
Jeff and the meat...
LOL!
June 1, 2009 at 11:54 am
Viewing 15 posts - 736 through 750 (of 2,038 total)