Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations TouchToneTommy on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Search results for query: *

  • Users: camy123
  • Content: Threads
  • Order by date
  1. camy123

    DTS create filename on the fly

    hi im running a DTs package where i would like to create a excel filename on the fly(using Date) cuurently i just have a default filename and then rename it but it doesnt work ne one know why please Function Main() Dim FileDate Dim DateString Dim FSO Dim File FileDate = Date DateString...
  2. camy123

    comparing two dates

    guys justa quickie here..... how can i compare to dates to find out which one is the most recent using datediff etc .. cheers guys
  3. camy123

    updating

    hi can any one help me please ive written this script to update dynamically but none of the updates work .. does any one know here is the code thanks in advance declare @maxCount int declare @minCount int declare @innerloopmincount int declare @innerloopmaxcount int declare @tablename...
  4. camy123

    dynamic sql update

    hi can some one help me pls ive written a peice of code to update.. using dynamic sql but it wont update ... does ne one know why example code is... declare @sql nvarchar(2345) set @sql = 'declare @i int' + ' while @i < 10' + ' begin' + ' update dupes set checked = 69 where col001 =...
  5. camy123

    creating dymanic variables

    does any one know how to create dynamic variables
  6. camy123

    bypassign error

    guys need your help please I have a store procedure runnign via scheduler and sql agent keeps aborting it when it comes to a certain error what i need is to nto allow the script to be aborted even tho there is a error there ne ideas Please
  7. camy123

    how to perform regEx in SQL

    hi i know you cant do regex in SQL but i ahve the following problem bascially i want to bring out all the values which have the following values in includes in them for example 123456 666555 777888 so that should bring out abc123456 cde666555 efgh777888 can any body help me.
  8. camy123

    sending email with arabic content

    hi can some please help me urgently ive made mwethod ocf creating a mail and sending it it arabic it works when it is sent to a outlook client but when its sent to hotmail its mumble jumble any ideas my code is below Response.ContentEncoding =Encoding.GetEncoding("Windows-1256")...
  9. camy123

    update errror

    guys when i try to update a certain column in a databse table i keep getting this error message any ideas ? please Server: Msg 18750, Level 16, State 4, Procedure upd_F1E69E45D5304681833AD6E92EE73B6B, Line 51 INITCOLVS: The parameter 'nickname' is invalid.
  10. camy123

    script erro

    guys ive written a script update row by rows on a table but i get this error i know its something to do with replication but how do i resolve it. Server: Msg 18750, Level 16, State 4, Procedure upd_F1E69E45D5304681833AD6E92EE73B6B, Line 51 INITCOLVS: The parameter 'nickname' is invalid.
  11. camy123

    date in varchar

    hi guys.... I have a script to write which is converting date which is stored as varchar(yeh i know) for example the data is currently in the format of 04/2004 and needs to be 2004/04 the columns all consists of data such null Y??? dhdhdh etc I have an idea of what to do but just wana see...
  12. camy123

    update date format

    hi how would i update a table and change the date from mm/yyyy format to yyyy/mm format
  13. camy123

    Date format

    hi guys does ne one know how to select all the rows from a table where the date is in the correct format dd/mm/yy else dont bring these results out.
  14. camy123

    distinct problems

    hi huys i ahve a table which i need to get only disticnt values from for example select disticnt staffname,creationdate,etcet from tablename but when this happens duplicates appear to .. ive tried select etc etc from tablename Where staff IN (Select staff from staffviewsource Group...
  15. camy123

    select distinct

    Hi guys can you help im running a distinct against a column but its still bringing out duplicates ne idea for example when i run select disticnt name from table it works fine but whe i run select distinct name, creationdate from table it brings out duplicates ne idea Please
  16. camy123

    Calling a Stored procedure from a View

    guys how do i call a stored procedure from a view thanx
  17. camy123

    copy a table

    how do i make a copy of a table what i am trying to do is copy a table into a temp table. the orginal table has 32 columns and i dont feel like recreating that manually as my temp table is there a way of copy that table so it has all the same column headeing ect when i display it as a temp...
  18. camy123

    using use with a @variable

    hi i would like to select a database with a variable such as use @variable but use will not allow me to use a variable is there any other way to swictch to a different database
  19. camy123

    display all database name in the SQl

    hhi how do i display all database names on the server is there a View in the master Table
  20. camy123

    search and replace

    hi can some one help me or giveme some advice.. I have a column in table which is of datatype image it contains data in the format such ,,,,,,,,,,,,,,,,,1000000,\\temp,,,,,,, I need to search through this and insert a value at a certain point(the 99th comma), can any one help me obvously ill...

Part and Inventory Search

Back
Top