Viewing 15 posts - 436 through 450 (of 2,894 total)
armm1388 (5/15/2013)
I have sql server DB and C# Application.
How can I restricted count of user who use from my DB?
How can I do this by c# or by SQL SERVER...
May 15, 2013 at 3:25 am
Jeff Moden (5/14/2013)
sqlfriends (5/14/2013)
The varchar column are supposed are be like a date : 2013-05-12
But there may be a wrong date...
May 15, 2013 at 3:18 am
That will help to start getting relevant help:
http://www.sqlservercentral.com/articles/Best+Practices/61537/
May 15, 2013 at 3:16 am
The only way for SQL Server to start counting from 2 after inserting 1000 into identity is to reseed it. But, it's a stupid thing to do anyway.
However, if...
May 14, 2013 at 11:36 am
sqlfriends (5/14/2013)
Thanks, but this is .net application we probably not going to use SSIS.
than use the first link from my previous post.
You can use ADO.NET transaction to do so,...
May 14, 2013 at 11:31 am
sqlfriends (5/14/2013)
Lynn Pettis (5/14/2013)
May 14, 2013 at 11:19 am
salliven (5/14/2013)
Can I insert a table without identity reseed?
Exapmle:
CREATE TABLE #table (id int IDENTITY (1,1), col1 int)
INSERT INTO #table DEFAULT VALUES
-- Id = 1
-- If I insert identity values, then...
May 14, 2013 at 9:35 am
ninobuttez (5/14/2013)
I need again your help. Something very easy for you I guess:
I need to add a value in the column of a table when the value is null.
So let's...
May 14, 2013 at 9:32 am
Hi and welcome to the forum.
As you here first time, I would advice you to have a look an article from the link at the bottom of my signature....
May 14, 2013 at 8:54 am
GilaMonster (5/14/2013)
Yes, you probably do want to split that up.This blog post's probably closer than the catch-all one
http://sqlinthewild.co.za/index.php/2009/09/15/multiple-execution-paths/
Yeah, my wrong. Clicked the wrong link and didn't bother to check...
Thank You...
May 14, 2013 at 8:26 am
Lynn Pettis (5/14/2013)
Eugene Elutin (5/14/2013)
William Gary Wright (5/14/2013)
May 14, 2013 at 8:22 am
Abhijit More (5/14/2013)
Can you drop this proc and never use? - not possible
If not, what...
May 14, 2013 at 8:18 am
William Gary Wright (5/14/2013)
May 14, 2013 at 7:13 am
Abhijit More (5/14/2013)
I have one stored proc which returns data by querying multiple tables using union clause without any search criteria.
select xyz as Col1 from table1 join table2 ...(total 8...
May 14, 2013 at 7:11 am
that classical question was answered long ago ;-):
http://sqlinthewild.co.za/index.php/2009/03/19/catch-all-queries/
May 14, 2013 at 7:07 am
Viewing 15 posts - 436 through 450 (of 2,894 total)