Viewing 15 posts - 1,096 through 1,110 (of 1,131 total)
create table #xref ( xref int, name nvarchar(32))
create table #data (group1 nvarchar(32),group2 nvarchar(32),xref int,value1 int,value2 int)
insert into #xref (xref, name) values (1, 'X1')
insert into #xref (xref, name) values (2, 'X2')
insert...
SQL = Scarcely Qualifies as a Language
April 20, 2005 at 12:45 pm
If you are attemping to use isql.exe (the equivalent of SQLPlus), see the Books On Line documentation for the command switchs such as listed below.
If you are attempting to write...
SQL = Scarcely Qualifies as a Language
April 19, 2005 at 10:05 am
SQL Server does perform "parameter sniffing" whereby the values of the parameters are passed to the query optimizer to generate the execution plan. Without the recompile parameter, the stored procedure...
SQL = Scarcely Qualifies as a Language
April 7, 2005 at 3:11 pm
As PW advised, having table access in UDF will be extremely slow. Recommend that all table access be outside of the UDF and use the columns as parameters to...
SQL = Scarcely Qualifies as a Language
March 14, 2005 at 3:00 pm
Please post create table and insert statements.
create table MyTable
( Value1 INT, Value2 INT, Value3 INT, Value4 INT )
go
insert into MyTable
(Value1 , Value2 , Value3 , Value4 )
select ...
SQL = Scarcely Qualifies as a Language
March 11, 2005 at 4:01 pm
See the thread on "Stored Proc vs Query" http://www.sqlservercentral.com/forums/shwmessage.aspx?forumid=5&messageid=166363#bm166984
What may be happening is:
1. SP executes for first time with particular parameter values that make the optimal plan use an...
SQL = Scarcely Qualifies as a Language
March 11, 2005 at 2:55 pm
If a permission is denied from a SQL Server role or a Windows NT group, the permission affects all logins that are members of the group or role, regardless of...
SQL = Scarcely Qualifies as a Language
March 11, 2005 at 9:43 am
A single SQL statement can reference the same table more than once as long as each reference assigns a unique name. For example:
from EmployeePayroll as EmployeePayroll_One
join EmployeePayroll...
SQL = Scarcely Qualifies as a Language
March 10, 2005 at 4:08 pm
As maintenance plans always run under the SQL Server Agent Login and you cannot specify a Login and Password, your options are limited.
Instead of maintenance plans, you could invoke...
SQL = Scarcely Qualifies as a Language
March 10, 2005 at 1:46 pm
Based on experience, I suggest you do NOT do this in SQL !!!
Recommend that you use a a programiing language (C++/C/Vb?) where you should load the data into in-memory arrays/lists/whatever and...
SQL = Scarcely Qualifies as a Language
March 10, 2005 at 12:34 pm
<
First create the stored procedure that will create and execute another stored procedure. This is where you'll supply your parameters.
>
If your intent is to force a new execution plan for...
SQL = Scarcely Qualifies as a Language
March 10, 2005 at 12:19 pm
To determine if there are space allocation or structural integrity problems, Database Command Console (DBCC) command. There are 6 commands that determine the granularity of the checking such as CHECKTABLE for...
SQL = Scarcely Qualifies as a Language
March 10, 2005 at 11:59 am
See "Arrays and Lists in SQL Server" by Erland Sommarskog (SQL Server MVP) at http://www.sommarskog.se/arrays-in-sql.html
SQL = Scarcely Qualifies as a Language
March 10, 2005 at 11:33 am
In SQL Server terms, you have been given a .mdf file.
You will need to install the Watcom DBMS software first before you can begin.
You could try installing the latest version...
SQL = Scarcely Qualifies as a Language
March 9, 2005 at 2:30 pm
Since the desktop had only one drive, there could be no RAID, so the server RAID configuration will definitely slow performance.
Did the desktop have an IDE Drive ? If so, be aware...
SQL = Scarcely Qualifies as a Language
March 8, 2005 at 4:14 pm
Viewing 15 posts - 1,096 through 1,110 (of 1,131 total)