Viewing 15 posts - 4,921 through 4,935 (of 13,460 total)
this is creating a table dynamically, i think; or what access might call a query?
I'm weak on Access formatting:
this is what i'm talking about:
INTO
CAMS_Snapshot
this is your query reformatted...
Lowell
August 17, 2012 at 12:58 pm
to use the GUI, you need dbo rights.
to do the same via script, you only need db_ddladmin.
sb_dataReader and db_dataWriter are for data only, not for DDL changes.
the GUI requires more...
Lowell
August 17, 2012 at 11:20 am
if you have the query, we can help you html-ize it.
what have you put together so far?
Lowell
August 17, 2012 at 7:52 am
rebuilding the database creates a fresh master, and would not retain the links to teh databases that were there previously.
fortunately for you, the MDF/LDF's will still be in place onthe...
Lowell
August 17, 2012 at 7:13 am
A database is not like an excel spreadsheet; the data is not stored, nor returned in any specific order .
if you want the data in order, you MUSt supply an...
Lowell
August 16, 2012 at 2:25 pm
this page has it broken down by application:
http://msdn.microsoft.com/en-us/library/ms143506.aspx
Database Engine and data files, Replication, Full-Text Search, and Data Quality Services
811 MB
Analysis Services and data files
345 MB
Reporting Services...
Lowell
August 16, 2012 at 12:32 pm
I had speed-read your question, and assumed the problem was the GUI scripting out ALTER commands.
i completely misread your question, sorry about that. that's why i scratched it out, but...
Lowell
August 16, 2012 at 11:42 am
asranantha (8/16/2012)
why isbbelle gets erroeand williams inserts 2 rows +julianna insert 12 rows are not lodead in in toy table how u say thatone
that's EXACTLY why you need to follow...
Lowell
August 16, 2012 at 11:38 am
asranantha (8/16/2012)
why isbbelle gets erroeand williams inserts 2 rows +julianna insert 12 rows are not lodead in in toy table how u say thatone
that's EXACTLY why you need to follow...
Lowell
August 16, 2012 at 11:35 am
no, i don't believe it will work.
if no schema is provided in SELECT columnList From Tablename, the default schema is assumed
...customschema in your example.
if you explicitly states teh schemanmae,...
Lowell
August 16, 2012 at 11:03 am
if you run this command, are the results null for the ObjectName? I've never heard of the built in function not working correctly, it's usually because of the issues Gsqared...
Lowell
August 16, 2012 at 10:52 am
Edit: What i thought below doesn't hold true; I just tested it, and I don't think it's doing what I thought it did.
Tools>>Options>>SQL Server Object Explorer>>Scripting.
I think It's the Scripting...
Lowell
August 16, 2012 at 10:36 am
well this uses soon to be deleted oldstyle syobjects, sysdepends,etc, but it works correctly;
i'll look into updating it to use new metadata instead.
SELECT
OBJECT_NAME(sd.id) Referencing_Object,
(SELECT
...
Lowell
August 15, 2012 at 1:52 pm
ok the query i gave works for objects created WITH SCHEMABINDING... in that case, the referencing_minor_id is not zero, which is how i get some results for column names on...
Lowell
August 15, 2012 at 1:43 pm
SELECT
OBJECT_NAME(depz.referencing_id), *
FROM sys.sql_expression_dependencies depz
INNER JOIN sys.objects objz ON depz.referenced_id=objz.object_id
LEFT OUTER JOIN sys.columns colz ON objz.object_id = colz.object_id
...
Lowell
August 15, 2012 at 1:36 pm
Viewing 15 posts - 4,921 through 4,935 (of 13,460 total)