all groups > sql server programming > march 2007 > threads for sunday march 11
Filter by Day: 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31
sp_runwebtask
Posted by Carly at 3/11/2007 7:29:04 PM
Hello,
Can sp_runwebtask run with a default output file (not specified when
sp_runwebtask is run)?
If yes, what is the default file name and path?
Thanks,
Carly
... more >>
regarding reset identity column
Posted by Iter at 3/11/2007 5:51:08 PM
Hi guys,
I have a column that use identity column, and the table includes this column
is heavily used for insert and delete. The value of this column gradually
increase very big and I am fraid it will be overflowed in the future. I know
the truncate statement can do it, but it cannot be satis... more >>
Regarding reset identity column
Posted by Iter at 3/11/2007 5:43:11 PM
Hi Guys,
I have a column that uses identity, and this table is heavily used for
insert and delete, cause identity column value very big. I think it will be
overflowed in the future. I am thinking that I can use a way to make lower
the value. I know the truncate statement can do it, but it ca... more >>
Moving row to another table
Posted by john_c at 3/11/2007 1:09:19 PM
I have two tables, each with four columns. I need to select a row in
table1 and insert that row into table2. What does that t-sql look
like?
Lastly, I'll delete the row from table1.
Thanks,
John
... more >>
Alter within If Exists
Posted by Shadow at 3/11/2007 1:06:47 PM
I am trying to perform a set of table alterations but only want to do
them if it isn't already done.
I have tried this a few ways but none of them seem to work at all. I
keep getting a syntax error. I have tried go in between, which
doesn't work since each one would be a new batch. Here is wh... more >>
CLR Stored Procedure Question
Posted by scott ocamb at 3/11/2007 11:25:18 AM
I am attempting to use CLR stored procedures for the first time, and it is
not working as i expected.
My plan is to use sql service broker to queue emails. I plan to use the
activation proc to process the emails using a CLR extented stored procedure.
There is pre-processing that is necessar... more >>
Check when a stored procedure was last used
Posted by Kimber1911 at 3/11/2007 9:51:15 AM
Is there a way to see when a stored procedure was last called on or used?
... more >>
Question on LEFTOUTER JOIN
Posted by Sagar at 3/11/2007 3:22:31 AM
There are n number of LEFT OUTER JOINs in a SELECT Query, the
@@rowcount of the result is 100 records. If suppose I added 5 more
LEFT OUTER JOINs to the SELECT, will the @@rowcount be the same ?
No matter how many LEFT OUTER JOINS are there, the @@rowcount depends
on the Left most table in the... more >>
Don't see what you're looking for? Search DevelopmentNow.com.
Possible to use variable to query linked server?
Posted by Kayda at 3/11/2007 12:47:01 AM
Hi:
I want to know if it is possible to query a linked server using a
variable as the query string--I get syntax errors when I try this:
DECLARE @QryString varchar(256)
SET @QryString = 'SELECT * FROM SybaseTable'
SELECT * FROM OPENQUERY(SybaseServer, @QryString)
Thanks,
Kayda
... more >>
schema
Posted by Yan at 3/11/2007 12:00:00 AM
Hi,
sql server 2005 sp2
I would like to rich a state where my database sql login can select from
base tables + execute procedures. I would like the sql login have
permissions on existing objects and also on new objects.
Using the bellow script I fail to do so.
I noticed that obejects bel... more >>
SQL 2005: How to Change the SourceBlockSize from 512 Bytes to 4096 Bytes?
Posted by Andreas Klemt at 3/11/2007 12:00:00 AM
Hello,
I want to backup the database and restore on another server. On the new
Server I get an error message
that the BlockSize is must be 4096 Bytes and not 512 Bytes. How can I fix
this?
Thanks for any help in advance!
Regards
Andreas
... more >>
|