Viewing 15 posts - 1 through 15 (of 21 total)
hunchback (2/20/2014)
February 20, 2014 at 12:53 pm
hunchback (2/20/2014)
Here is an example without taking into consideration user types.
SELECT
t.name AS tn,
sc.*
FROM
sys.tables AS t
INNER JOIN
sys.columns AS sc
ON sc.object_id = t.object_id
INNER JOIN
sys.types...
February 20, 2014 at 12:50 pm
hunchback (2/20/2014)
Here is an example without taking into consideration user types.
SELECT
t.name AS tn,
sc.*
FROM
sys.tables AS t
INNER JOIN
sys.columns AS sc
ON sc.object_id = t.object_id
INNER JOIN
sys.types...
February 20, 2014 at 12:32 pm
Sean Lange (2/20/2014)
Dieselbf2 (2/20/2014)
Is there a way to query all the columns in a database that have the data type as Integer
Can you provide some insight as to what you...
February 20, 2014 at 12:21 pm
Thanks for everything guys I actually finally got the update query to work. Thanks for all you help, I do appreciate everything
February 14, 2014 at 2:27 pm
Dohsan (2/14/2014)
As a side note, is your syntax not incorrect for the UPDATE statement?
UPDATEParts
SET[TimeToTest] = 0.5000
WHEREPartID = 48871;
I understand that but I don't want to write 743 individual query's. That's...
February 14, 2014 at 9:41 am
Sean Lange (2/7/2014)
See if this might be more of what you are looking for.
Select P.PartID, P.mansPart, P.Cost As...
February 7, 2014 at 1:31 pm
Lowell (1/24/2014)
January 24, 2014 at 12:18 pm
Dieselbf2 (1/24/2014)
Lowell (1/24/2014)
first is a critical permissions issue:
the end user who inserts into this table must ALSO be a user in the msdb database, and...
January 24, 2014 at 9:55 am
Lowell (1/24/2014)
first is a critical permissions issue:
the end user who inserts into this table must ALSO be a user in the msdb database, and must...
January 24, 2014 at 9:32 am
What do you mean by:
if that doesn't clear it, i've had to bounce the sql instance itself to get things moving through the queue again:
Please explain
January 24, 2014 at 9:08 am
Lowell (1/24/2014)
January 24, 2014 at 9:04 am
Lowell (1/24/2014)
if you run this query, is the specific email you sent...
January 24, 2014 at 8:19 am
Sean Lange (1/23/2014)
However, the rows for [ProposalProfitSplitWorksheet] all fail the...
January 23, 2014 at 7:40 am
Sean Lange (1/22/2014)
Dieselbf2 (1/22/2014)
January 22, 2014 at 5:50 pm
Viewing 15 posts - 1 through 15 (of 21 total)