Viewing 15 posts - 106 through 120 (of 130 total)
I can certainly understand and agree with the point of view that case sensitivity, certainly on a whole database, is generally a bad idea. I think however, that the...
July 8, 2005 at 1:39 am
For loading significant amounts of xml I would strongly suggest investigating SQLXML.
Put simply, create a xml schema defining the xml document and the related database tables, then execute a script...
July 7, 2005 at 2:05 am
This looks like a relatively straight forward asp error message involving integrated authentication between the web server (running the asp page) and the sql server. There are a number...
July 4, 2005 at 2:24 am
I like phillcart's answer a lot. Very neat, however see my reply (certainly no where near as neat) to your other identical post (try not to cross-post) if you really...
June 29, 2005 at 2:45 am
Here's a stored procedure I use to return the FOR XML output as a resultset. I can't take any credit for this as I found it on some forum...
June 29, 2005 at 2:36 am
Khalid,
-Add a global variable to your package called OutputFilePath with type as string
-Add a Dynamic Properties task to your package and set the "Data Source" property of your destination data...
June 27, 2005 at 2:27 am
This might sound a stupid question but where are you setting the parameters of the stored procedure ? There might be a problem with the way they're being passed...
June 23, 2005 at 1:55 am
I think that we'd all agree with andy that Integrated Security would be the preferred option if available/possible. Depending on your development tools/expertise however it is possible to change...
June 22, 2005 at 1:54 am
Only by writing a separate .NET application/library and executing that using xp_cmdshell, the execute process task or an ActiveX script that uses the windows scripting host objects to execute your...
June 21, 2005 at 2:12 am
As far as I understand it (and this is not guaranteed to be spot on) but the server definitely takes additional load while the profiler is running however the size...
June 9, 2005 at 2:37 am
1. There is no way to update an existing record using this method. What I have found is that your bulk loading inserts everything into staging table(s) and...
June 9, 2005 at 2:05 am
This link may help which states you can bulk load or use an updategram to insert the base64 encoded data by using a schema and specifying the datatype as bin.base64.
There...
June 7, 2005 at 2:35 am
billsalkin,
I managed to create a VB.NET project which enumerated and fired DTS packages but had a bit of difficulty responding to progress events correctly i.e. when each 1000 rows were...
June 7, 2005 at 2:15 am
I've tried and used the SQLXML Bulk Load component provided by Microsoft with much success. It performs comparitively as fast as BCP and enables you to insert child related...
May 24, 2005 at 2:18 am
I'm not totally convinced that it is the recompilation of your stored procedures that is slowing the application down initially. The compilation of stored procedures happens extremely quickly, which...
May 24, 2005 at 2:10 am
Viewing 15 posts - 106 through 120 (of 130 total)