Viewing 15 posts - 4,921 through 4,935 (of 13,465 total)
robert.gerald.taylor (8/20/2012)
GRANT ALTER ON SCHEMA::Reporting TO [abc\BI...
August 20, 2012 at 9:07 am
you can do this easily withe DelimitedSplit8K function here on SSC:
declare @val varchar(8000)
set @val='ABC DEF GHI JKL MNO 12 PQR'
select * from dbo.DelimitedSplit8K(@val,' ')
where ItemNumber=5
read the article here and...
August 18, 2012 at 3:50 pm
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...
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...
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?
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...
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...
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...
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...
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...
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...
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,...
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...
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...
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
...
August 15, 2012 at 1:52 pm
Viewing 15 posts - 4,921 through 4,935 (of 13,465 total)