Viewing 15 posts - 691 through 705 (of 6,486 total)
Andy Warren (8/8/2014)
August 8, 2014 at 7:09 am
ratneshsinghparihar-1130833 (8/6/2014)
Yes , i missed the sql as well .
30 years ago when RDBMS were taking into shape and wining over file systems . The choice for developers was to...
August 6, 2014 at 12:23 pm
put a ";" in front of the WITH. WITH is very finnicky about having a separation between it and any previous SQL statements
As in:
Select *
From CampServ.dbo.SampleFakeCustomerData
//This is where I...
August 5, 2014 at 1:15 pm
The "." is similar to DOS-style directory commands: it means the "root" of the current element.
The "[1]" means the first occurrence of that particular path within your...
August 5, 2014 at 12:30 pm
GoofyGuy (8/4/2014)
Since we're bandying about old adages, here's a paraphrased one for you: if you love software and sausages, you shouldn't watch either being made.
Agreed - and both go well...
August 4, 2014 at 2:16 pm
GoofyGuy (8/4/2014)
... depending on the type of process you're dealing with, it may not be physically possible to test every single permutation, so - yes in some cases...
August 4, 2014 at 12:11 pm
GoofyGuy (7/31/2014)
Steve Jones - SSC Editor (7/31/2014)
GoofyGuy (7/31/2014)
What's the difference?
There is no...
July 31, 2014 at 8:35 pm
Do you know for a fact that the delete operation finishes? With an ODBC connection, you would be subject to connection timeouts, which as I recall would rollback the operation.
Also...
July 30, 2014 at 8:23 am
Here's an example which might prove useful:
declare @addinfo xml;
declare @empinfo xml;
declare @toplevel xml;
set @toplevel='<Regions>
<Region>
<Name>North</Name>
<Stores>
<Store>
...
July 29, 2014 at 1:21 pm
There has been a rash of spam posts to advertise pay channels for various types of events. Pretty sure the admins had to clamp down on various posts (probably...
July 28, 2014 at 8:37 am
mballico (7/23/2014)
Then I need to make the opening of each item and the corresponding calculation, which...
July 25, 2014 at 3:04 pm
Eric -
You might get lucky here (some folks deal with both Oracle and SQL Server), but If you need Oracle help, you probably want to ask on an Oracle...
July 25, 2014 at 11:53 am
Miles Neale (7/24/2014)
In reading both your post and the reference article, I find them both true and accurate. There are those who will look at data as the hallowed...
July 24, 2014 at 6:06 pm
Agreed! Any time you're in a dev tool, you can ultimately make something secure or insecure.
That said - I do think that some of the newer VS improvements (especially...
July 21, 2014 at 12:08 pm
Dalkeith (7/18/2014)
I would prefer...
July 21, 2014 at 8:28 am
Viewing 15 posts - 691 through 705 (of 6,486 total)