Viewing 15 posts - 7,126 through 7,140 (of 8,753 total)
agbondoc (8/19/2014)
I have been task to decode a very long Hex string to decimal for further analysis. The output I'm told should be two (2) columns between 2,000...
September 8, 2014 at 10:45 pm
Thanks for the question Steve but oooops:crazy:, please correct the answer!
😎
September 8, 2014 at 10:33 pm
Sean Lange (9/8/2014)
create table #SomeDates (MyDate...
September 8, 2014 at 9:03 pm
As mentioned before, this can be an injection attack surface if not done properly, normally far more fail there than succeed. Look first at other alternatives like Gail's "catch all",...
September 8, 2014 at 1:11 pm
In order to advice any further on the subject, more information is needed, without the info on network topology, connectivity etc., it is pure guesswork.
Keep in mind that in order...
September 8, 2014 at 1:05 pm
itsanjayg (9/8/2014)
thanks for question.
I tried in SQL2012 and it works fine without any error.
like this....
CREATE SYNONYM Emp FOR Appconfig
SELECT * FROM emp
it will successfully show all records...
September 8, 2014 at 8:38 am
Ooops, greater than is stead of less than in the last filter:pinch: Misread the post as "where three last activities are in a period greater or equal to 15 days"
😎
USE...
September 8, 2014 at 7:12 am
For completeness, here is a complete solution to the problem using the method I posted earlier and the sample data set posted.
😎
;WITH QUERY_BASE AS
(
SELECT
...
September 7, 2014 at 10:27 pm
DAVID.MANGATAL (9/7/2014)
One client has asked me to extract from a third parties RESTful API...
September 7, 2014 at 10:07 pm
In short: A clustered index can be thought of as the structure of the table, it can only have one structure at the time. In other words, it determines the...
September 7, 2014 at 9:43 pm
Here is an example code demonstrating a method but not a solution. For a full solution, follow Lynn's advice on supplying further information.
😎
USE tempdb;
GO
;WITH SAMPLE_DATA(ACTIVITY_DATE) AS
(SELECT ACTIVITY_DATE FROM (VALUES
...
September 7, 2014 at 2:44 pm
Luis Cazares (9/7/2014)
Eirikur Eiriksson (9/7/2014)
Just a thought, what about the ability to rate questions? Could be something like "splendid question" all the way down to "interesting" or "PICNIC".😎
Isn't that...
September 7, 2014 at 1:47 pm
Just a thought, what about the ability to rate questions? Could be something like "splendid question" all the way down to "interesting" or "PICNIC".
😎
September 7, 2014 at 1:08 pm
...but it works for Joe in HR (that's his default schema);-)
😎
September 7, 2014 at 12:54 pm
Luis Cazares (9/7/2014)
September 7, 2014 at 11:45 am
Viewing 15 posts - 7,126 through 7,140 (of 8,753 total)