Forum Replies Created

Viewing 15 posts - 3,601 through 3,615 (of 13,460 total)

  • RE: NO. of instances

    Geoff A code example worked fairly well on my machine.

    My dev machine has four instances installed:

    2008 standard (default).

    2005 Express.

    2008R2 Developer.

    2012 Developer.

    The above query seems to have missed my...

    Lowell


    --help us help you! If you post a question, make sure you include a CREATE TABLE... statement and INSERT INTO... statement into that table to give the volunteers here representative data. with your description of the problem, we can provide a tested, verifiable solution to your question! asking the question the right way gets you a tested answer the fastest way possible!

  • RE: Error="8952" Severity="16" State="1 what is error number 8952 stands and solution?

    according to microsoft This Link for Error 8952 says it's a hardware error, and suggests a default restore from backup, i think.

    Table error: Database 'DBNAME', index 'OBJNAME.INDNAME' (ID O_ID) (index...

    Lowell


    --help us help you! If you post a question, make sure you include a CREATE TABLE... statement and INSERT INTO... statement into that table to give the volunteers here representative data. with your description of the problem, we can provide a tested, verifiable solution to your question! asking the question the right way gets you a tested answer the fastest way possible!

  • RE: Slow performing query!

    your key types, being huge varbinarys, are preventing you from indexing; that's going to require a table scan.

    is that a default varbinary size that someone/some application imposed? can you get...

    Lowell


    --help us help you! If you post a question, make sure you include a CREATE TABLE... statement and INSERT INTO... statement into that table to give the volunteers here representative data. with your description of the problem, we can provide a tested, verifiable solution to your question! asking the question the right way gets you a tested answer the fastest way possible!

  • RE: Interview Questions

    this interview question is testing to see if you know about collation.

    there are UPPER and LOWER functions for converting things;

    the problem is unless you explicitly state the collation, a default...

    Lowell


    --help us help you! If you post a question, make sure you include a CREATE TABLE... statement and INSERT INTO... statement into that table to give the volunteers here representative data. with your description of the problem, we can provide a tested, verifiable solution to your question! asking the question the right way gets you a tested answer the fastest way possible!

  • RE: How to Give User Access to another user

    niladri.primalink (4/22/2013)


    Hi Lowell,

    Thanks for your reply I have craeted role under CAS database..then grant select option and after that when I add rolemember then it shows me error

    User or role...

    Lowell


    --help us help you! If you post a question, make sure you include a CREATE TABLE... statement and INSERT INTO... statement into that table to give the volunteers here representative data. with your description of the problem, we can provide a tested, verifiable solution to your question! asking the question the right way gets you a tested answer the fastest way possible!

  • RE: How to Give User Access to another user

    create a specific role with only the limited permissions you want.

    once the role is created, then add the users to that role.

    remember roles are cumulative, so if you add the...

    Lowell


    --help us help you! If you post a question, make sure you include a CREATE TABLE... statement and INSERT INTO... statement into that table to give the volunteers here representative data. with your description of the problem, we can provide a tested, verifiable solution to your question! asking the question the right way gets you a tested answer the fastest way possible!

  • RE: Quote placement Sp_msforeachdb

    ok, maybe i'm wrong here, but I believe there is no need to use sp_msForEachDB:

    that dmv creates ALL the missing indexes in for All databases that meet the missing index...

    Lowell


    --help us help you! If you post a question, make sure you include a CREATE TABLE... statement and INSERT INTO... statement into that table to give the volunteers here representative data. with your description of the problem, we can provide a tested, verifiable solution to your question! asking the question the right way gets you a tested answer the fastest way possible!

  • RE: Textbox fill color based on textbox value

    not an SSRS expert, but i certainly know html and css.

    if you can set the class of each option in the select list, you can do it:

    a css example:

    http://stackoverflow.com/questions/2720532/html-select-dropdown-list-with-multiple-colours

    and here...

    Lowell


    --help us help you! If you post a question, make sure you include a CREATE TABLE... statement and INSERT INTO... statement into that table to give the volunteers here representative data. with your description of the problem, we can provide a tested, verifiable solution to your question! asking the question the right way gets you a tested answer the fastest way possible!

  • RE: What causes timestamp/rowversion to update?

    could it be someone was cleaning up data and used a REPLACE without a WHERE statement?

    the rowversion gets incrmeneted even thought here was no "real" change:

    CREATE TABLE WHATEVER(

    WHATEVERID INT...

    Lowell


    --help us help you! If you post a question, make sure you include a CREATE TABLE... statement and INSERT INTO... statement into that table to give the volunteers here representative data. with your description of the problem, we can provide a tested, verifiable solution to your question! asking the question the right way gets you a tested answer the fastest way possible!

  • RE: Revoke Grant permission to DB_OWNER

    no.

    the role db_owners, being a built in role, cannot be modified.

    instead, create your own role , ie '[AlmostOwners]', and assign the privileges you want.

    then remove db_owner from the users, and...

    Lowell


    --help us help you! If you post a question, make sure you include a CREATE TABLE... statement and INSERT INTO... statement into that table to give the volunteers here representative data. with your description of the problem, we can provide a tested, verifiable solution to your question! asking the question the right way gets you a tested answer the fastest way possible!

  • RE: how i can store marathi font in sql server

    gamit124 (4/19/2013)


    its not working

    Remember we are not sitting behind you, looking over your shoulder.

    i have no idea what is working or not working.

    If you want help with...

    Lowell


    --help us help you! If you post a question, make sure you include a CREATE TABLE... statement and INSERT INTO... statement into that table to give the volunteers here representative data. with your description of the problem, we can provide a tested, verifiable solution to your question! asking the question the right way gets you a tested answer the fastest way possible!

  • RE: How to get these details in sqlserver

    interview questions?

    Lowell


    --help us help you! If you post a question, make sure you include a CREATE TABLE... statement and INSERT INTO... statement into that table to give the volunteers here representative data. with your description of the problem, we can provide a tested, verifiable solution to your question! asking the question the right way gets you a tested answer the fastest way possible!

  • RE: how i can store marathi font in sql server

    your table needs to use nvarchar and not varchar fields to hold unicode data.

    in addition, any parameters you are using also need to be nvarchar...so in .NET language, for example...

    Lowell


    --help us help you! If you post a question, make sure you include a CREATE TABLE... statement and INSERT INTO... statement into that table to give the volunteers here representative data. with your description of the problem, we can provide a tested, verifiable solution to your question! asking the question the right way gets you a tested answer the fastest way possible!

  • RE: How to stop SSMS from adding database name to scripts

    Ive never seen that in the options no.

    You can do a find and replace very easy though

    [INSERT INTO ] --> [INSERT INTO MYDB.]

    Lowell


    --help us help you! If you post a question, make sure you include a CREATE TABLE... statement and INSERT INTO... statement into that table to give the volunteers here representative data. with your description of the problem, we can provide a tested, verifiable solution to your question! asking the question the right way gets you a tested answer the fastest way possible!

  • RE: RESTORE DATABASE

    i missed the part about restoring on the remote server.

    if you have a linked server, i know you can do EXECUTE AT;

    here's an example of creating a table on the...

    Lowell


    --help us help you! If you post a question, make sure you include a CREATE TABLE... statement and INSERT INTO... statement into that table to give the volunteers here representative data. with your description of the problem, we can provide a tested, verifiable solution to your question! asking the question the right way gets you a tested answer the fastest way possible!

Viewing 15 posts - 3,601 through 3,615 (of 13,460 total)