Forum Replies Created

Viewing 15 posts - 166 through 180 (of 630 total)

  • RE: Database Connector in T-SQL?

    In T-SQL the connection is handled entirely by the Query window you open. Unless you specify a database name in the Query then you can run the query against either...

  • RE: Showing COUNT greater than 10

    I think it might be getting confused try adding an alias for the tables like so.

    select COUNT (empl.employee_no) as 'Number of Employees in Section',dep.Department_Name

    from Employees empl

    INNER JOIN

    Departments dep

    on dep.Department_No=empl.Department_No

    having

    COUNT(*)...

  • RE: Showing COUNT greater than 10

    What happens when you run it?

  • RE: SQL Server 2008 Intermittent Performance Issues

    I don't know so much as information to provide as much as things to consider. What else is running on the server? Who is connected to the server?...

  • RE: Inserting from sp_spaceused

    Thank you Michael. This is one of my must have scripts for a DBA toolbox very well done.

  • RE: Try Catch block

    Llike other languages you can not bypass a compile error with a catch block. Since the insert does not match the table definition this is generating a compile error...

  • RE: Inserting from sp_spaceused

    I did not write this but here is a little script I picked up a while back that I use. It provides some pretty useful information. I would give...

  • RE: Who's afraid of Gila Monsters?

    Grant Fritchey (4/13/2011)


    ChrisM@home (4/13/2011)


    CirquedeSQLeil (4/13/2011)


    Grant Fritchey (4/13/2011)


    Teh Gila Monster has teh big scares on me and makes me afeared fer me woefully inadequate sexual equipment.

    *cough*

    That should help.

    Don't you have to...

  • RE: XML is Killing me!!! Help!!!!!

    A little link to lead you in the right path.

    http://www.sqlteam.com/forums/topic.asp?TOPIC_ID=61409

  • RE: Today's Random Word!

    Daniel Bowlin (4/13/2011)


    crookj (4/13/2011)


    sing4you (4/13/2011)


    crookj (4/13/2011)


    Speeking of older music....

    Anyone remember Harpers Bizarre?

    Joe

    I do sort of remember them. What were their hits?

    Pocket full of miracles, anything goes, and Feeling Groovy...

  • RE: Who's afraid of Gila Monsters?

    Seeing as how in the grand state of IL I have an extremly low chance of actually encountering one I can say I have never given thought to weather I...

  • RE: Source is on a mapped drive.

    We you setup the connection in the package if you specify widows autentication then know. The person using the package or again the Agent account if you are running...

  • RE: Search Tables for Matching GUID

    I could be horribly wrong as I have not done extensive research on GUID's but I do not beleive that would be the case. The GUID is generated per...

  • RE: Search Tables for Matching GUID

    I do not beleive that would show what you are looking for. Even if the child record existed in table 2 I would not expect to find a relationship in...

  • RE: the account to create database

    When I create a database I am always logged in as my Windows Authenticated logic which places me as part of the SysAdmin group.

Viewing 15 posts - 166 through 180 (of 630 total)