Viewing 15 posts - 46 through 60 (of 607 total)
What does this give you?
SELECT
o.name AS TableName,
c.name AS ColumnName,
t.name AS DataType
FROM
sys.objects o
INNER JOIN
sys.columns c
ON o.object_id = c.object_id
INNER JOIN
sys.types t
ON c.user_type_id = t.user_type_id
WHERE
o.name = 'Countries'
AND c.name = 'Country_Area'
October 15, 2014 at 4:15 am
Please show us the HTML code that executed (sic) successfully in a query window.
October 10, 2014 at 5:55 am
Please show us the HTML code that executed (sic) successfully in a query window.
October 10, 2014 at 5:54 am
What version of SSMS are you using to connect to the SQL Server 2012 instance?
October 2, 2014 at 7:59 am
Roland C (10/1/2014)
Another badly redacted question ! It gets a little boring :doze:
You could always submit your own question.
October 1, 2014 at 12:39 am
Dan Guzman - Not the MVP (9/29/2014)
September 30, 2014 at 7:56 am
Koen Verbeeck (9/16/2014)
Sean Pearce (9/16/2014)
And this relates to SQL Server how? I am not here for maths lessons.It's an exercise in reading T-SQL 🙂
So reading the SQL will give you...
September 16, 2014 at 4:16 am
And this relates to SQL Server how? I am not here for maths lessons.
September 16, 2014 at 3:10 am
You have only shared a small piece of your code, so we need to guess.
Is your code selecting into a table? i.e. Maybe the following code example will show what...
September 12, 2014 at 6:40 am
http://en.wikipedia.org/wiki/Side_effect_(computer_science)
In computer science, a function or expression is said to have a side effect if, in addition to returning a value, it also modifies some state or has an observable...
September 12, 2014 at 4:46 am
September 12, 2014 at 4:24 am
MSDN only refers to tables and does not mention the columns.
http://msdn.microsoft.com/en-us/library/ms187926.aspx
A procedure can reference tables that do not yet exist. At creation time, only syntax checking is performed. The procedure...
September 11, 2014 at 6:21 am
ramchand.repalle (9/10/2014)
I have created one table and one stored procedure for to insert/delete/update the data in that table.
So,I was trying to move the scripts from one database to another...
September 11, 2014 at 4:48 am
Internal Tables
http://technet.microsoft.com/en-us/library/ms366343(v=sql.105).aspx
SELECT
it.name,
ind.name
FROM
sys.indexes ind
INNER JOIN
sys.internal_tables it
ON ind.object_id = it.object_id
SELECT
o.name,
ind.name
FROM
sys.indexes ind
INNER JOIN
sys.all_objects o
ON ind.object_id = o.object_id
September 11, 2014 at 4:40 am
Viewing 15 posts - 46 through 60 (of 607 total)