Forum Replies Created

Viewing 15 posts - 76 through 90 (of 126 total)

  • RE: Track Sessions

    SQL Profiler (2000) you can add the Audit Login and Audit Logout event classes.  This is more for a temporary monitoring. 

    For permanant monitoring here is an article covering C2 Auditing. ...

  • RE: SELECT ... FOR XML

    In 2005 you can use the XML datatype, in 2000 you can use varchar(8000) if your xml is not greater than 8000 otherwise the text datatype can hold you xml... ...

  • RE: QUery

    Here's how to raise the error:  This assumes that empid 2 and 4 are static, is this the case?

     

    IF NOT EXISTS(Select 1 from Books where empid in (2,4)) BEGIN

    RAISERROR('EmployeeId 2...

  • RE: HELP Eliminating this cursor?

    Lynn beat me to it... but since I typed all this up I'll add it anyway...

    Here is another for you:

    -------------------------------------------------------------------------

    -- FIRST WE NEED A TABLE THAT HAS ALL...

  • RE: Table with unique Random Number column

    "Jason:  currently the random number is used as a multiplier, so has to be numeric.  I could change the logic, but the existing application gives the right results, so I'm...

  • RE: Table with unique Random Number column

    If the need is for uniqueness and not keys you may want to consider timestamp datatype

  • RE: help with a query

    This should give you a basic example of what you are looking for. 

    ---------------------------------------------------------------------------------

    -- Just building dummy data

    ---------------------------------------------------------------------------------

    if exists(select 1 from sysobjects...

  • RE: Link Server Query Problem (Msg 7347)

    It took some time and doing, but the solution was found using your first and second suggestion combined.  Thank you...

    I had use a select .. into from statement and convert...

  • RE: Merge Snapshot

    Does the account running SQL Agent have rights on the subscriber?

  • RE: transactional replication of many databases on a single sql instance

    I'm not aware of any limit on the number of suscribers that can be added to an instance or publication.  As for performance, there will be issues regarding performance with...

  • RE: Link Server Query Problem (Msg 7347)

    Since the local table is my temp table this doesn't suck so bad.

    I just did as you suggested and increased the length of the column to 80, 255, and 4000... ...

  • RE: Cannot figure out how to make a connection to the SQL express server

    try

    SqlConnection conn_1 = new SqlConnection("Data source=ServerName;Database=Touchpos SQL Server;Integrated Security=SSPI");

    conn

    or

    SqlConnection conn_1 = new SqlConnection("Data source=127.0.0.1;Database=Touchpos SQL Server;Integrated Security=SSPI");

    conn

  • RE: concatenate values using an UPDATE

    What you want to do is a pivot with two columns of data.  SQL 2005 has a pivot function, search BOL for with pivot and pivot etc. 

    If you are...

  • RE: convert two columns into one

    Not sure if this what you are looking for but here is a VB sample:

    in T-SQL you would use convert in place of CDate and Cast/Convert in place of Cstr

    August 22, 2006 at 6:40 pm

    #656259

  • RE: Simple SQL Query

    Since you can't concatenate the arguments in sp_add_job use this (it declares variables for each of your concatenated properties and uses the variables as the arguments):

    DECLARE...

Viewing 15 posts - 76 through 90 (of 126 total)