Viewing 15 posts - 916 through 930 (of 1,415 total)
meilenb (5/27/2015)
Alan.B (5/27/2015)
Lynn Pettis (5/27/2015)
meilenb (5/27/2015)
Alan.B (5/27/2015)
meilenb (5/24/2015)
...Everyone knows that CO2, CH4 and N2O ...
How is the science clear on climate change when the scientists can't agree? Plus,...
May 27, 2015 at 12:36 pm
meilenb (5/23/2015)
I would be more inclined to have a mix of best...
May 25, 2015 at 7:02 am
This link below gave me some ideas when I was putting together a query.
http://stackoverflow.com/questions/407671/query-ad-from-sql-server-2005
This is a query I actually got to work at my place, what I found interesting is...
May 7, 2015 at 12:25 pm
I actually meant that I would use the update statement, the other inserts were just setting up a test to see if the update works. From your comments, I get...
April 29, 2015 at 6:09 am
I apologise for not understanding the question if thats the case, but if you just want the geography value for each latitude and longitude, you could try the "point" function...
April 28, 2015 at 6:56 am
Your nesting confused the heck out of me LOL, also afraid I can't help you troubleshoot xml, I'm pretty slow at that. Anyways...
-- is this what you're trying to do?...
April 17, 2015 at 11:27 am
some pretty good discussion here:
April 16, 2015 at 10:32 am
Grant Fritchey (4/16/2015)
patrickmcginnis59 10839 (4/16/2015)
The hash key is computed as (object_id * database_id) mod (hash table size). For plans that are associated with adhoc or prepared plans, the object_id is...
April 16, 2015 at 9:33 am
The hash key is computed as (object_id * database_id) mod (hash table size). For plans that are associated with adhoc or prepared plans, the object_id is an internal hash of...
April 16, 2015 at 6:46 am
Here's my insert version for completeness!
create table EmployeeCountry
(
EmployeeID int,
CountryID int
)
create table Employee
(
EmployeeID int,
Country1ID int,
Country2ID int,
Country3ID int
);
insert into EmployeeCountry select 10001,20001;
insert into EmployeeCountry select 10001,20002;
insert into EmployeeCountry select 10001,20003;
insert into EmployeeCountry...
April 14, 2015 at 11:53 am
Sean Lange (4/14/2015)
April 14, 2015 at 11:29 am
Sean Lange (4/14/2015)
patrickmcginnis59 10839 (4/14/2015)
Sean Lange (4/14/2015)
liamdemasi (4/14/2015)
April 14, 2015 at 10:42 am
Sean Lange (4/14/2015)
liamdemasi (4/14/2015)
April 14, 2015 at 10:18 am
Eirikur Eiriksson (3/17/2015)
add2700 (3/17/2015)
This issue has existed for a long time. SQL Server 2005 SP2 on server 2003.
First thought is that fixing the ageing OS/SQL Version should be a higher...
March 19, 2015 at 8:33 am
Since BIGINT is larger than the number of atoms in the universe, we do not use it very often. What math requires this size?
The reason for using BIGINT probably...
March 19, 2015 at 6:34 am
Viewing 15 posts - 916 through 930 (of 1,415 total)