Forum Replies Created

Viewing 15 posts - 2,491 through 2,505 (of 3,658 total)

  • RE: Seek Table Design Advice\Best Practice: Accounting Period

    You could use an INT (4 bytes) and record February as 200602

    You could use SMALLINT (2 bytes) and record February as 602. Of course your would face the a...

  • RE: More Alternative Energy

    I saw something like this years ago in an Australian television program.

    I believe that these windmills are called Darrius windmills.

    The BBC played part of George Bush's state of the...

  • RE: How to restore a database with ''''-'''' in the name

    Try RESTORE DATATASE [Your-database-name]

  • RE: DTS - Specifying Connections Dynamically

    set dtsPackage = DTSGlobalVariables.Parent

    Set sourceConnection = dtsPackage.Connections("Text File (Source)")

    sourceConnection.DataSource = DTSGlobalVariables("PollingBaseDirectory").Value

    The preceding 3 lines are in a DTS I use to upload a text file as specified in...

  • RE: SP4

    The release notes for SP4 say that it cannot be rolled back therefore take a full backup of everything before your attempt and install.

    That said, I have not had any...

  • RE: SP4

    I don't know about that but I would jump to hotfix 2040 because SP4 (2039) has a bug that stops the SQL seeing all the memory in your server if...

  • RE: Details.XML file into Relational File

    You want to take a look at the SQLXMLBULKLOAD process. There are lots of threads on the site but I had a similar problem to you and got

  • RE: Problems with ActiveX and WScript.Shell

    The ZIP is on a local drive.

    I will try and use StdOut but I am not optimistic.

  • RE: PromptSQL

    Brian,

    You forgot to mention the snippets!

    type in ssf and press TAB and you get SELECT * FROM.

    You can add your own as well so I have set up

    derr to bring...

  • RE: Who''s Responsible for Training?

    I should like to get my full MCDBA but it is expensive and ultimately I don't think it is reasonable to expect a company to pay for it all, however,...

  • RE: Debugging showing LEN(@i_name) > 0 when @i_name = ''''''''

    If it is doing it during DEBUG I would suggest printing the LEN and the CODE() for the character that is being passed in.

    Clearly DEBUG is translating the space in...

  • RE: Cross DB Execute

    The only way that I can think of is to use an OPENROWSET and predefined connection but that isn't a way I would choose to do it.

    Are you using Windows...

  • RE: SQL Server service accounts

    I can't speak for the clustered environment but SQL2000 does NOT require the service accounts to be local administrators.

    The accounts obviously need full privileges to the directories that SQL uses...

  • RE: different filegroups (sql server 2k, sp3)

    I believe that each filegroup gets assigned its own thread so the only benefit you will get will be from whatever using separate threads gives you.

  • RE: Debugging showing LEN(@i_name) > 0 when @i_name = ''''''''

    If you pass in a string containing nothing but spaces LEN will return 0.

Viewing 15 posts - 2,491 through 2,505 (of 3,658 total)