Forum Replies Created

Viewing 15 posts - 9,961 through 9,975 (of 13,469 total)

  • RE: Return all characters to the right of a colon in a column

    some of your part codes do not contain a colon then; add a WHERE statement:

    WHERE CHARINDEX(':', PART_CODE) > 0

  • RE: Lock a table during tests

    sure, here's a basic example.

    in any query window with SSMS:

    begin tran

    select * from example with (tablockx)

    the with(TABLOCKX) gives you an excluseive table lock.

    now if you try in a second query...

  • RE: Not getting compilation error though it contains errors.

    only on stored procedures, you can reference a table that does not exist, and the proc will still compile successfully; they call it delayed name resolution.

    so you'd be able to...

  • RE: Linked Server Table Listing

    no matter what the linked server type is, you can use this command:

    EXEC dbo.sp_Tables_Ex myLinkedServer

    that will list all the tables available in the linked server...whether sql,access,oracle,or whatever...i...

  • RE: C2 Log vs. default trace log ?

    You've kind of hit on all the high points yourself, so i'll just expound a bit.

    first, format-wise, a trace is a trace; it's designed to capture exactly 64 columns of...

  • RE: Tally table ASCII validator - Anyone ever did this?

    J-F, to find non-compliant data with high ascii, i think you can just use this:

    select * from @test where value like '%[^''a-Z .,-]%'

    i think you'd use a Tally table...

  • RE: Help required in Fulltext search

    if that is a specific product, i think you'd have to add the synonyms to the theosaurus file right?

    it's the same concept if i search fro "camero", but i...

  • RE: HOW TO RETRIEVE THE STATEMENT USED TO CREATE THE TABLE

    the original statement used to create a table is not saved/stored anywhere;

    all you can do is generate a statement which would create the table; it probably would not be exactly...

  • RE: Permissions on a Schema

    Roust_m (2/17/2010)


    Hi,

    I want to give a user permissions to creata any object within a schema, BUT indexes, as well as read/write/execute, etc.

    Is there a way to do this?

    Thanks.

    i don't believe...

  • RE: export from 2005 and import to 2000

    I looked at your datafile,a nd because some records will contain multiple CrLf,s you will have to use SSIS or BCP, as suggested above.

    on the SQL 2005 server, you will...

  • RE: Server Audit Job

    http://www.sqlservercentral.com/search/?q=audit

    audit has way to many connotations...

    audit data changes? backups success/failures? diskspace?usernames and roles? login successes/failures? servers on a network and all their versions?

    tell us what you are wanting to...

  • RE: UNC Path of filename

    ok i see what you are trying to do;

    in order for this to work, the acount that is running the services will need domain admin priviledges in order to browse...

  • RE: UNC Path of filename

    from what i just read WNetGetUniversalName 2will give you the UNC path to a shared resorce, but not a local resource;

    i think you'd have to build that yourself, and could...

  • RE: UNC Path of filename

    not sure how much help this really is;

    but i found it in two places

    by running "NET USE" in a command window, i get results that i could use with xp_cmdshell:

    Status...

  • RE: SQL Server 2008 running 50% faster on desktop than server - what to look for?

    for the ziptestserver plan, the QueryPlan DegreeOfParallelism="1", but for the homecexecution plan, it's QueryPlan DegreeOfParallelism="0";

    it looks like the rest of the plan is exactly the same though;

    Jeff mentioned it...

Viewing 15 posts - 9,961 through 9,975 (of 13,469 total)