Forum Replies Created

Viewing 15 posts - 9,286 through 9,300 (of 13,469 total)

  • RE: How to load zipped text file ?

    well it depends.

    if load = put the binary of the zip file into an IMAGE/varbinary(max) column, then that's possible.

    if load dmeans open the zip/get the(one or more files!) from the...

  • RE: can't add ADD CONSTRAINT

    Krasavita (6/9/2010)


    I just re created table and I am ok,bit can't add data, what I need to do in order to insert data,should I disable a key and then re...

  • RE: How to change collation of msdb?

    well, tempdb is a copy of the model db every time the server is started, so changing the model db would change the temp db after a start and stop.

    ALTER...

  • RE: removing random characters

    here you go Matt: this is using a function which strips the string down and removes unwanted chars;

    take a look at the logic, and see if you understand how it...

  • RE: copy the select results into text file

    purushotham.k9 (6/9/2010)


    Actually i am selecting the data in stored procedure. from stored procedure it self i need to upload the data into text file with | delimeter

    In that case, look...

  • RE: copy the select results into text file

    if you use an enhanced text editor like EditPlus,NotePad++,UltraEdit or one of many others, you can do it in a couple of seconds flat:

    copy and pasting from grid view of...

  • RE: user creation

    so much of what you want depends on specifics...the types of logins,which procs, whether they can read form an tables or not, etc, but this might give you some ideas.

    the...

  • RE: Why can't I connect to 2 sql servers with SSMS, but others can?

    Wayne it's been a while, but i had a similar issue;for me, it was my laptop, which traveled between different networks a lot. i thought it was related to...

  • RE: xp_cmdshell and TableDiff.exe

    Karl in your case, since Tablediff takes username/password parameters for the servers it will compare, you could just include those and not have to fiddle with the startup accounts, but...

  • RE: Why this Convert has a small quirk?

    Roy it looks to me that this is a rounding issue when the convert is changing to smalldatetime; that is wierd to me as well, since i'd expect the rounding...

  • RE: scalared valued functions

    a user would need EXECUTE permissions on the functions in order to use them.. read(SELECT) access, like granting db_datareader, is limited to tables or views.

  • RE: Default Value For Columns

    no limit the way you are thinking...you can have one default per column if you want...a table with 200 columns could potentially each have a default value for each of...

  • RE: xp_cmdshell and TableDiff.exe

    xp_cmdShell does not use your credentials.

    this is a common security misconception . The problem is that when you access any resource OUTSIDE of SQL server, like network shares, local hard...

  • RE: How to create a table on the fly? Is it even possible?

    sure, it's just like any regular INTO NEWTABLENAME select statement: the column definitions will be derived from the output of the results of the SELECT.

    SELECT TOP 3 *

    INTO MyNewTable

    FROM sys.tables

    SELECT...

  • RE: ProperCase again

    Paul i think you are on the right track about the collation issue;

    your function and examples worked fine; i got the correct proper cas for all the examples you posted.

    I...

Viewing 15 posts - 9,286 through 9,300 (of 13,469 total)