Viewing 15 posts - 1 through 15 (of 44 total)
Using the above example, the generated xsd file needs another 'toplevel' element. Make it a complex type and sequence and then you will get a new table called report which...
November 3, 2011 at 6:40 am
Just a couple of typo points really.
The function SumCustomerTotals returns a table with CustomerTotalDue and shippedtotal but your example function call in the 6th code box selects different column names....
June 30, 2011 at 4:04 am
I'm no expert and I haven't used the express version much, but from your screen print it doesn't look like SQL express has installed correctly. I think SQL VSS is...
March 31, 2011 at 3:24 am
I'm following this one avidly (well I'm trying to keep up). Thanks for this.
Tony
PS. The link to part 1 points back to part 2.
July 10, 2009 at 7:45 am
For David McKinney
Just be wary when using a main procedure to prepare your temp tables
followed by sub procedures to populate the temp tables
The article notes that temp tables can be...
June 11, 2009 at 4:25 am
Sorry I was out of touch. I was being a bit dumb as that output file is just the output messages from the job run.
I can't say I've output xml...
June 9, 2009 at 2:46 am
Am I being too simplistic by saying just add a job?
Under SQL Server Agent, right click jobs, new job and fill in the boxes.
Under steps, general tab holds your commands...
June 5, 2009 at 2:49 am
Have a look at Books OnLine for @@IDENTITY because it sounds like you main application is using that builtin function to get the last value inserted into an identity column....
June 4, 2009 at 8:37 am
You could just add a parameter to the proc_test_table2 and then in the trigger gather the information you want to report to the email message and pass it into the...
June 4, 2009 at 7:05 am
I think the problem here is to do with locking.
The insert process locks the 'second row' when it starts the insert and then the trigger fires. In the trigger it...
June 3, 2009 at 5:15 am
Not really an answer, but another work around. I use winsplit revolution (freeware) to organise windows on my screen. With this you could use ctrl,alt,F7 to quickly move the active...
June 1, 2009 at 5:15 am
Rather than just trying to scroll through the Messages tab looking for the errors, just hit Ctrl+F and search for 'Msg' or 'Error' (can't remember which it is now). This...
May 21, 2009 at 5:10 am
Have a look at Jeff Moden's article [p]http://www.sqlservercentral.com/articles/TSQL/62867/[/p]
on the uses for a tally table. You should be able to use this to parse strings for character positions.
May 12, 2009 at 4:44 am
There are probably other ways but using a CTE (Common table expression) is a possibility
I'll assume you want the main table data for records you found in the audit where...
April 28, 2009 at 4:13 am
Yes, both give the same result but, they won't always do so at the same speed.
The second format (using the OR) is quicker (provided the column is indexed) so...
March 13, 2009 at 2:28 am
Viewing 15 posts - 1 through 15 (of 44 total)