Viewing 15 posts - 856 through 870 (of 1,253 total)
Hi
One major difference between temp tables and table variables is that you can index your temp tables.
Generally when you have a large dataset you would use temp tables and...
March 16, 2008 at 10:56 pm
Whihc is the OS you are using.
March 13, 2008 at 1:05 am
Hi
Backups will not help in your case. What abt importing data.
You can use queries where you can take only the required data and import it. You can also use SSIS.
March 12, 2008 at 12:31 am
If you dont get the error message then its confirmation that the deletion worked properly.
March 11, 2008 at 1:08 am
Hi
1 - Order should not affect the performance. Order does not affect the execution plans made by SQL Server. It then uses these plans when u execute the queries/procs.
2 -...
March 11, 2008 at 1:06 am
Add error handling
CREATE PROCEDURE sales.up_EmpDelete
@SSN char(9)
AS
BEGIN
DELETE FROM employee WHERE ssn = @ssn;
IF @@Error <> 0
BEGIN
RAISERROR 50001 ' Error while deleting from employee'
END
END
March 10, 2008 at 11:18 pm
Nice article and easy to understand.
March 10, 2008 at 11:15 pm
Hi
Are you having the same problem if you are querying a minimum no: of rows say around 50.
did u change the protocols and check.
Is there any Firewall ....
March 10, 2008 at 11:14 pm
From BOL
The Local Service account is a special, built-in account that is similar to an authenticated user account. The Local Service account has the same level of access to...
March 5, 2008 at 3:23 am
Hi
I think you can easily create a small table and try out the sql statements. If you can use a table with the same or similar structure as that of...
March 5, 2008 at 3:19 am
You will need a domain account for this.
March 4, 2008 at 11:40 pm
Yes, If you have jobs that need to access the network then your SQL Server Agent must be configured with a domain account. For ex:- if u have log...
March 4, 2008 at 11:31 pm
Hi
Assuming you have a identity column
take the max value of the identity column for those records where the "flag is set".
Then query the next 100 records whose identity value...
March 3, 2008 at 2:06 am
Hi
Was the column name changed ? was some other column renamed to the column used in the view ?
February 28, 2008 at 11:52 pm
Viewing 15 posts - 856 through 870 (of 1,253 total)