Viewing 15 posts - 1 through 15 (of 38 total)
cheers,
I actually came to the same conclusion myself - create a dynamic SQL string, and then execute to get the format I want. My next problem after that was the...
September 28, 2003 at 6:12 pm
Bingo! Thanks cneuhold, it was pretty much to that effect.
The ODBC drivers I had weren't very effective. I downloaded the client toolset from Sybase, and once that was installed on...
August 19, 2003 at 8:35 pm
I assume you are loading XML into the db, not the other way around.
When opening & loading an XML document into the db, I declare my dateime field as say...
July 3, 2003 at 1:19 am
hmmm...
I understand that users need to create their own adhoc rpeorts, however, our current issues have stemmed from the fact that everyone has become an Excel programmer, with their own...
July 1, 2003 at 1:39 am
Seems I found the answer.
Although I set the timeout option for connection in ASP, you can also override the timeout option for commands to the SQL Server, which default at...
May 26, 2003 at 8:36 pm
What if you're creating dynamic SQL Statements and executing them.
ie. @strSQL = 'UPDATE tablea set column a = 56'
execute sp_executesql @strSQL
Will XACT_ABORT still be effective in this case?
May 6, 2003 at 5:35 pm
Ai, it's a bit dirty but certainly better than using a cursor.
cheers
May 5, 2003 at 1:03 am
I'm currently trying to do some dynamic XML uploading to the SQL too (and struggling a little)
What about determining the type of XML document in the first proc, then passing...
May 2, 2003 at 12:41 am
In SQL 7.0 you use to have a "Truncate on checkpoint" option against the database - this is now the "Recovery option" under SQL 2000.
By switching to Simple, its effectively...
March 30, 2003 at 5:45 pm
Hi Robert,
Obviously your database is logging all transactions running through it - check the options for your database, and you'll probably find the Recovery Model setting is set to...
March 26, 2003 at 8:02 pm
Antares
sorry for not getting back sooner - bean away.
The minor problems options is under the Integrity checks, and I did have it set, although this is run under a seperate...
March 17, 2003 at 4:59 pm
sorry, I mean it will only truncate the log - it won't allocate data to empty pages.
The system I'm using is on Windows 2000, with SQL 7, and I do...
February 20, 2003 at 9:32 pm
After checking the time of creation, I realise that this problem occurred before I made any changes to the database (which makes it more a mystery).
I also run my...
February 18, 2003 at 9:26 pm
I found an answer to my problem - I needed to refer to the attribute "type" of the element "mytable". Took a number of go's to get the result, but...
January 28, 2003 at 7:57 pm
sure, no problem.
This script opens the select statement from SQL, and then (on a row by row basis), builds an SQL insert statement for the record into Excel. Obviously need...
December 18, 2002 at 7:59 pm
Viewing 15 posts - 1 through 15 (of 38 total)