Forum Replies Created

Viewing 15 posts - 4,921 through 4,935 (of 13,465 total)

  • RE: CREATE VIEW permissions

    robert.gerald.taylor (8/20/2012)


    I've got a schema (Reporting) that I want to grant CREATE, ALTER & DELETE permissions to a group; the T-SQL statements I did are:

    GRANT ALTER ON SCHEMA::Reporting TO [abc\BI...

  • RE: I need to get the specific word from the string

    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...

  • RE: query between 2 servers

    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...

  • RE: Rights for

    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...

  • RE: disk space Report by email

    if you have the query, we can help you html-ize it.

    what have you put together so far?

  • RE: Database removed from instance by automatically

    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...

  • RE: Why doesn’t the last record win?

    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...

  • RE: Maximum Disk Space needed for SQL Server 2012 Enterprise and All Features

    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...

  • RE: Odd table format

    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...

  • RE: sql logics1

    asranantha (8/16/2012)


    why isbbelle gets erroe

    and 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...

  • RE: sql logics1

    asranantha (8/16/2012)


    why isbbelle gets erroe

    and 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...

  • RE: Changing schema for tables

    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,...

  • RE: “OBJECT_NAME” function no longer returns objects' names

    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...

  • RE: Odd table format

    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...

  • RE: Find Usage of Column in Related Views

    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

    ...

Viewing 15 posts - 4,921 through 4,935 (of 13,465 total)