Forum Replies Created

Viewing 15 posts - 31 through 45 (of 2,007 total)

  • RE: is null in IN statement

    It looks like you are capturing all values of a list box (selected and unselected). Please pass only selected values from the list. It should be fine with simple IN...

  • RE: Introduction to Indexes: Part 2 – The clustered index

    Let me put this way; I have a table XYZ and an ID (Primary, Clustered Index). I typically don’t query on ID column but it’s used in many queries for...

  • RE: Introduction to Indexes: Part 2 – The clustered index

    As a matter of fact, you can’t avoid the scans (table / index) in real life or practical scenarios but you can minimize those and that’s what Gail is trying...

  • RE: Fact Table Design Question. Please help.

    I am sorry for the late reply. It came to my notice just now. I am not much regular on SSC these days but I am surprised with a fact...

  • RE: Passed 70-448!

    I would recommend you to go through Exam Ploicy first. Microsoft will ban the candidate if he/she violates any of the following rules.

    Candidate bans

    If a candidate violates any testing rule,...

  • RE: Revert Last Delete Statement on in SQL Mgmt Studio

    Jeff Moden (7/5/2012)


    guerillaunit (7/5/2012)


    Thanks Lowell. Is there anyway to find where backups are being saved to? [font="Arial Black"]I took over a server cluster[/font] so I am not sure...

  • RE: UK: intellectual property rights - Help Needed

    If that's true and you aren't actually violating an NDA or Covenant Not to Compete and your independent development was done neither on compay time nore on compay equipment/software, you...

  • RE: copying table contents

    I am daring to suggest the Partition Switch (sliding window) here with the assumption that 10 rows that you mentioned are just a fake number and the table has voluminous...

  • RE: Fact Table Design Question. Please help.

    In this case you should add VacancyID itself as a grain (sounds crazy? I know).

    tblIndustry

    IndustryID Int Primary Key

    Name Varchar(100) (Ex: Accountancy or Sales etc)

    (1) IT

    (2) Finance

    tblRole

    RoleID Int Primary Key

    Name Varchar(100)...

  • RE: SSIS Packge Fails Importing Data to SQL Server from Oracle

    Add Data Conversion transformations to convert string columns from non-Unicode (DT_STR) to Unicode (DT_WSTR) strings, or vice versa.

    More: http://msdn.microsoft.com/en-US/library/aa337316(v=sql.90).aspx

  • RE: Column naming convention

    In fact, I'd fight against it, kicking, biting & gouging.

    +1

    We do follow ‘FK_<Child_Table>_<Parent_Table>_<Parent_Column(s)>’. It’s very much self-explanatory with a drawback of its length. We abbreviate the table & column names...

  • RE: Fact Table Design Question. Please help.

    Whenever there would be any vacancy, it will belong to some industry & some role. It’s safe to have one fact table FactVacancy with RoleID, IndustryID as grain.

    And you don’t...

  • RE: Video url problem

    Are you sure these values are reching to SQL Server as you mentioned?

    I don't find any issues on SQL Server side...

    declare @vid_url varchar(100), @img_url varchar(100)

    select 'http://www.youtube.com/watch?feature=player_embedded&v=5kslTIy-5ro' as vido_url,

    'bharatividyapeethsinstofmgmtstudies[highlight=#ffff11]&[/highlight]resea,navimumbai,lib.PNG' as...

  • RE: SQL Table column issue

    Oops… Just noticed the error message “Boolean Data Type mismatch’. It’s certainly on column ‘Client’ where you entered ‘Yes’. Please enter true/false as valid values for Boolean data type in...

  • RE: SQL Table column issue

    Try to enter it in ANSI pattern... e.g. 2012-05-20 16:30:23.623

Viewing 15 posts - 31 through 45 (of 2,007 total)