Viewing 15 posts - 16 through 30 (of 267 total)
I'm not sure if I understand the question correctly, but when the SQL Server service is running, it locks the physical files so that no one can delete/alter the files...
November 28, 2003 at 7:46 am
I remember once coming across a similar problem when I used functions in where clauses.
If I remember correctly (it was a long time ago) I needed to convert the parameter...
November 26, 2003 at 6:43 am
Thanks. I've gone with the option of saving the file as a csv and then importing that.
If I get some more time, I will try some of the other...
November 26, 2003 at 3:40 am
When I use preview to look at the data, the numeric data is missing. The first row is column headers, the second row has a character value in this...
November 26, 2003 at 1:36 am
I'm inclined to agree that just storing the data I have is the better option than creating data.
The values I might have created would be the current value not the...
November 26, 2003 at 1:27 am
I don't like bit values because I can never remember what the values stand for (or is it I can never remember what the values stand for because I never...
November 25, 2003 at 7:06 am
I use global temp tables but I always put in a unique qualifier (e.g. spid) in the name of the table to prevent one user tripping over another.
Jeremy
November 24, 2003 at 9:05 am
Frank,
This came up in a thread a few weeks ago but I still don't know why the space used goes screwy. Do you?
Jeremy
November 24, 2003 at 4:40 am
Try running DBCC UPDATEUSAGE in QA for the database in question. It updates the space used displayed in EM. I have had problems with zero space which have...
November 24, 2003 at 4:26 am
Take out the GO separator:
create procedure batch_queries as
select *
from table_a
select *
from table_b
select *
from table_c
Jeremy
November 20, 2003 at 5:07 am
Somthing like this would do the trick:
create #temptable
( <column definitions> )
insert #temptable
exec [database_name].[object_owner].[stored_proc_name] <parmlist>
drop table #temptable
If the second database is on a different server then all you...
November 20, 2003 at 3:58 am
Have you considered net stop and net start commands?
Jeremy
November 20, 2003 at 2:39 am
Frank,
Just quick of the blocks this time.
Jeremy
November 19, 2003 at 2:13 am
You would need to use dynamic SQL to do this.
declare @sqlstring nvarchar(1000)
set @sqlstring = N'select * from ' + @DBName
exec sp_executesql @sqlstring
You might need to set SELECT permission on the...
November 19, 2003 at 1:52 am
The only permission I give the users is SELECT permission on the database tables and, of course, execute permission on the stored procedure they call from the client app. ...
November 19, 2003 at 1:45 am
Viewing 15 posts - 16 through 30 (of 267 total)