Forum Replies Created

Viewing 15 posts - 1,066 through 1,080 (of 1,884 total)

  • RE: Question of the Day for 25 Jan 2006

    I agree that I did not know about this function too, nice question.

    2 things from reading

    http://msdn2.microsoft.com/library/ms186915.aspx

    1. Permissions function returns permissions for CURRENT USER, so if he, junior DBA...

  • RE: Slef Join Loop

    Did not realise that the record could be deleted several times. In this case it is easier probably to loop using the same algorithm joining the table to itself and...

  • RE: Sql Server 2K to 2K5 connection

    I do use 2000 Query Analyzer to connect to 2005 server. It is true that you can not use Enterprise Manager. You may want to install 2005 client components.

    If...

  • RE: Slef Join Loop

    Somthing like this (did not test, just an idea):

    select t1.LocationID

    from MyTable t1 join MyTable t2 on t1.ID = t2.linkID

    where t2.ID = MyRequestedID  (12 in this case)

  • RE: Database clean up

    Suppose you have the tables and fields:

    UserTable - UserID (your primary key)

    Table1 - RefUserID1 (this is  a reference field (foreign key) to userIDin the Usertable)

    Table2 - RefUserID2, Table 3 -RefUserID3

    You...

  • RE: remote connection error to SQL2005

    David,

    Did you try to create an old good Data Source?

    Can you ping the server from your client?

    This error that you posted is from Named Pipes (the error message says so...

  • RE: MS SQL Express......and connecting to it...

    I just updated my post above

  • RE: MS SQL Express......and connecting to it...

    They say that Express listens on the local connections by default (shared memory) . You have to enable TCP/IP or Named Pipes, especially if you specify the network library explicitly.

    Use...

  • RE: remote connection error to SQL2005

    Hi,

    I think that how you describe the server name as \\serverIP\SQLservername that it could be the named instance.

    You connect to the named instance as servername\instancename without \\

    also port...

  • RE: Unattended Installation - upgrade from SQL 7.0 to 2000

    Is there a reason to do an unattened install? I would babysit my servers, that is for sure.

    But if you want the file you may record it by selecting Advanced ...

  • RE: Introduction to SQL Server 2005

    Excellent Article with a good overview of develoment features.

    I somewhat aggree with Alan too: the examples have typos unless the author did modify his AdventureWorks database.

    In the first example...

  • RE: Linked Server Error

    with port issues sometimes Named Pipes connection will work. Test it by creating Named Pipes alias from Client Network utility.

  • RE: Linked Server Error

    Looks like a firewall or port  problem to me.

    See if you can connect from D to C by other ports: pinging, mapping a drive, register C in EM from D (not...

  • RE: Call one stored procedure from another

    do you use an "OUTPUT" keyword for the parameter that you want to return? You may see examples in BOL article CREATE PROCEDURE. See the example D there that shows...

  • RE: retrieve / recover sa password

    Did you try SA with a blank password or SA with sa password?

    Are you sure that nobody actually knows the SA password for the server?

    Did you run the profiler to...

Viewing 15 posts - 1,066 through 1,080 (of 1,884 total)