Viewing 15 posts - 1,876 through 1,890 (of 9,641 total)
SQL Kiwi (1/11/2012)
Jack Corbett (1/11/2012)
Oh, and as far as inserting a NULL code, you shouldn't have NULL's:-P
:laugh: But seriously, the example code did not specify NOT NULL as...
January 11, 2012 at 11:24 am
Thanks Gail and Paul. I always learn something when y'all post.
Oh, and as far as inserting a NULL code, you shouldn't have NULL's:-P
January 11, 2012 at 11:13 am
SQL Kiwi (1/11/2012)
DECLARE @MYCODE int = NULL
DECLARE @ID int = NULL
DECLARE @OUTPUT TABLE (ID int)
MERGE...
January 11, 2012 at 10:45 am
Dev (1/11/2012)
SQL Server Logins are manageable for Web Applications. Few...
January 11, 2012 at 10:27 am
Little Nick (1/11/2012)
Let's, my same Stored Procedure is execute 500 a day. Did we have special...
January 11, 2012 at 10:07 am
GilaMonster (1/11/2012)
Jack Corbett (1/11/2012)
Declare @ids Table (id INT);
IF NOT EXISTS (SELECT * FROM myTable WHERE CODE=@MYCODE)
BEGIN
INSERT INTO myTable (CODE)
...
January 11, 2012 at 9:49 am
You can't write directly to a table with a server-side trace. Even if you could it wouldn't be wise as it would not perform as well as writing to...
January 11, 2012 at 9:47 am
How about option 4:
Declare @ids Table (id INT);
IF NOT EXISTS (SELECT * FROM myTable WHERE CODE=@MYCODE)
BEGIN
INSERT INTO myTable (CODE)
OUTPUT Inserted.id into @ids
...
January 11, 2012 at 9:40 am
Dev (1/11/2012)
January 11, 2012 at 9:33 am
AER (1/11/2012)
Thank you so muck for your help. I totally agree that the Windows Authentication is the most secure way of handling the application pools.
Now since I'm more on SQL...
January 11, 2012 at 9:30 am
Little Nick (1/11/2012)
Dim sqlNm As String = ""
Dim sqlNm2 As String = ""
...
January 11, 2012 at 9:14 am
Normally with SSIS you would do this using SSIS configurations or by setting a variable value using the command line options. Here are a couple of resources:
http://consultingblogs.emc.com/jamiethomson/archive/2007/03/13/SSIS_3A00_-Property-Paths-syntax.aspx
January 11, 2012 at 9:05 am
You don't want to shrink and that won't fix the issue if all the space in the file is used. If you have drive space you should grow the...
January 11, 2012 at 8:59 am
You haven't provided enough information for anyone to provide an accurate answer.
What do you want the view to provide? A union of the results from the tables...
January 11, 2012 at 8:55 am
Yes you select the top option and then you just select install client tools.
January 11, 2012 at 8:40 am
Viewing 15 posts - 1,876 through 1,890 (of 9,641 total)