Forum Replies Created

Viewing 15 posts - 37,936 through 37,950 (of 39,757 total)

  • RE: Design

    We do this with categories here at SSC.

    create table Category

    ( categoryid int

    , categoryname varchar(20)

    , parentcatid int

    )

    insert category 1, 'SQL 2000', 0

    insert category 2, 'Programming', 0

    insert category...

  • RE: Views

    yes,

    create view N_orders as

    select *

    from northwind.dbo.orders

    return

    create this in pubs to access northwind.

    Steve Jones

    steve@dkranch.net

  • RE: Error in SQL backup & restore script

    Is this a valid path on the server? THe with MOVE is to restore from a different path than that the backup was made with. This applies to different servers...

  • RE: Which is better IN or OR operator?

    they both will work well. The IN resolves to essentially a series of ORs

    Steve Jones

    steve@dkranch.net

  • RE: Ports used by MSSQL

    Is the problem that SQL Server sometimes runs on 5000? Is this an instance besides the default? The server network utility mentioned above allows you to limit SQL Server to...

  • RE: Storage Ideas

    If you don't have the need for a SAN, I'd stay away. You are spending $$ and taking chances for no reason. SANs are usually looked at for the 100s...

  • RE: Code deployment minimizing "down time"

    Personally I use Box C as a QA box, backup/restore box A to box C, deploy code, and test. If everything is ok, then deploy code to box A and...

  • RE: Working with images

    This is an often a debated topic. Store the .jpgs in the filesystem and the path in the db or store the image in the db. I vote for the...

  • RE: Connecting to another SQL SERVER

    You cannot do this. You need to setup a linked server to access another sql server from T-SQL.

    Steve Jones

    steve@dkranch.net

  • RE: sql to sql transfer

    secure shell, vpn, export to file and encrypt the file and then ftp the encrypted file (or other transport).

    Steve Jones

    steve@dkranch.net

  • RE: Im confused!!!

    OK, I'm slightly confused, but here are some things to note.

    For each SQL Server instance, there is an MSSQLServer service and a SQLAgent service. There may be others, but these...

  • RE: how to get the print output from sql server

    Put them in a temp or perm table and then Bulk Copy them out.

    Steve Jones

    steve@dkranch.net

  • RE: Push FTP

    I've thought about using a COM component and am not opposed. The thing I really like about this method is I can copy a single file (.DTS) to a SQL...

  • RE: "Login failed for user '(null)'

    I have seen this before when the SQL Server cannot see the domain controller. It cannot authenicate the use.

    Can other users connect with NT Auth? Check the server event...

  • RE: database restore

    If there is only one log file, you can delete it and only restore the database file. The system should create a new log file for you.

    Steve Jones

    steve@dkranch.net

Viewing 15 posts - 37,936 through 37,950 (of 39,757 total)