Viewing 15 posts - 331 through 345 (of 653 total)
instead of using AUTO try to use RAW
SELECT
* FROM tba_user FOR XML
June 28, 2007 at 1:07 pm
there is no XML Editor in SQL 2005, unless if you are referring to the SQL Query Editor.
You can draft your xml files in the query editor, and then update...
June 28, 2007 at 12:59 pm
its probably better for you to create a .net assembly which calls the compression program.
to what format are you compressing into?
June 28, 2007 at 12:49 pm
Which SQL server are you looking at?
If SQL 2005 then
Firstly, yes you can connect to a live stock feed using .Net Assembly/CLR integration
secondly with out knowing further details about your...
June 28, 2007 at 12:45 pm
are these sql 2000 DTS packages on SQL 2005. Try to reinstall the Microsoft SQL Server 2000 DTS Designer Components that are part of the Feature pack
June 28, 2007 at 12:35 pm
why not try to use the IF...Else statement. I am thinking you want to use sort expressions which are mutually exclusive
June 28, 2007 at 12:30 pm
try to use sql authentication.
the problem you are getting is most likely due to the network configurations on your machine.if you try to access a folder on your sql...
June 28, 2007 at 12:26 pm
or rather just concatenate your columns with out bothering with the cursor
----------------------------
SELECT
'FileNumber = '+ cd.casedatauid +
June 28, 2007 at 12:14 pm
you have to many columns in your query and yet you are trying to assign them to @tableHTML
see my example below
----------------------
declare
@greeting varchar(
June 28, 2007 at 12:12 pm
are you dealing with definite instances of time (point in time) in a range or period in time (time range)?
June 28, 2007 at 11:54 am
June 28, 2007 at 11:49 am
the statement which is proper depends on your system requirements specification. What are you supposed to show on the report?
June 28, 2007 at 11:47 am
Have a look at your query execution plan to determine were its spending a lot of time.
June 28, 2007 at 11:44 am
Thanks Peter that worked a treat.
I had tried using convert() using 120 but that failed as well. Had been a bit afraid to use the DATEFORMAT thingy because the column...
June 27, 2007 at 10:03 am
create a new table with a similar structure and then selecting your old data ordering by date inserting into the new table. rename your old table and rename your new...
June 27, 2007 at 9:17 am
Viewing 15 posts - 331 through 345 (of 653 total)