Viewing 15 posts - 9,286 through 9,300 (of 13,469 total)
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...
June 9, 2010 at 12:58 pm
Krasavita (6/9/2010)
June 9, 2010 at 12:55 pm
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...
June 9, 2010 at 12:09 pm
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...
June 9, 2010 at 11:07 am
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...
June 9, 2010 at 10:05 am
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...
June 9, 2010 at 9:58 am
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...
June 9, 2010 at 8:12 am
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...
June 8, 2010 at 6:38 pm
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...
June 8, 2010 at 12:27 pm
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...
June 8, 2010 at 11:41 am
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.
June 8, 2010 at 11:07 am
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...
June 8, 2010 at 11:05 am
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...
June 8, 2010 at 10:54 am
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...
June 8, 2010 at 7:26 am
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...
June 8, 2010 at 7:03 am
Viewing 15 posts - 9,286 through 9,300 (of 13,469 total)