Forum Replies Created

Viewing 15 posts - 12,466 through 12,480 (of 13,465 total)

  • RE: Unexpected SQL exception in DA

    yes, i mean run a trace in profiler, preferably against a test database, but it doesn't matter.

    start a trace, and make them duplicate the error when the trace is running.

    stop the...

  • RE: Unexpected SQL exception in DA

    I doubt it's happening every time right? I always call these intermittent network issues;

    it's nothing to do with the code or even with SQL server, but the network;

    it could be...

  • RE: What''''s the difference between SQL 2005 and SQL 2005 Extended?

    from some page on microsoft:

    http://msdn2.microsoft.com/en-us/library/ms143506.aspx

     

    Extended System Support

    SQL Server 2005 64-bit versions include support for extended systems, also known as Windows on Windows (WOW64). WOW64 is a feature...

  • RE: Tougher Question--over my head

    you said you were hyperlinking to the IttNumber; why can't you simply change the hyperlink to include the Id and the IttNumber? then you can obviously use it on the...

  • RE: Removing unicode data from fixed width downloaded text

    elegant solution as always from Jeff;

    I'm decent with SQL, but I still haven't gotten my arms around the Tally table concept for processing;

    someday I'll grow up and be like Jeff...

  • RE: Comparing image data type

    I don't store images in my database, but i do store information about them.

    I wrote a program that gets the CRC of any file, and I store that in the...

  • RE: Is there a script that returns all databases in a domain?

    no, because there's no central resource to ask for the information.

    You'll want to use a utility like SQL Recon to find all the servers in your domain. Besides finding out...

  • RE: HT Import About 8000+ Text Files from 4 Hard Drive Folders Into SQL Table?

    here's how i would do it if restricted to just using TSQL:

    --a table to loop thru filenames

    CREATE TABLE ALLFILENAMES(WHICHPATH VARCHAR(255),WHICHFILE varchar(255))

    --the source table: yours already exists, but...

  • RE: Query Analyzer

    Query Analyzer is just an application that gets the data from a SQL Server database. it doesn't contain the scripts. everything is contained in a database on the server.

    typically, you'd...

  • RE: Query Analyzer

    like Matt said, it depends on what you mean by "integrate into".

    you can add calls to extranal applications int eh toolbar, and there is a project(codeproject.com or planetsourcecode.com , i...

  • RE: problem querying system tables

    truncating where? in query analyzer? QA has a famous display issue with large varchar columns, it might be the default value of 256 here:

    Tools>>Options>>Results>>Maximum Characters Per Column>>change to 8000

    if you are...

  • RE: Removing unicode data from fixed width downloaded text

    Is unicode characters the same as high ascii characters?

    this is the only way i could figure out how to do it so far, was with a function that loops thru...

  • RE: problem querying system tables

    with a copy/paste of your code, i get this error:

    Server: Msg 1540, Level 16, State 1, Line 1

    Cannot sort a row of size 8101, which is greater than the allowable...

  • RE: Data Transform Script

    creating the tables and migrating the data?

    if exists(select name from db1.dbo.sysobjects where name='mastertable1') drop table db1.dbo.mastertable1

    select * into db1.dbo.mastertable1 from db2.dbo.mastertable1

    just moving new data?

    insert into db1.dbo.mastertable1

    select * from db2.dbo.mastertable1

    left...

  • RE: Data Transform Script

    if it's just one or two tables, then you'd simply use something like

    SELECT *

    INTO MYTABLENAME

    FROM OTHERDATABASE.DBO.MYTABLENAME

    [WHERE <condition to exclude unwanted data>].

    if...

Viewing 15 posts - 12,466 through 12,480 (of 13,465 total)