Viewing 15 posts - 1,636 through 1,650 (of 2,268 total)
This method should be faster
SELECT rows FROM sysindexes
WHERE id = OBJECT_ID('YourTableName') AND indid < 2
January 20, 2009 at 4:01 am
I use MyGeneration for all my sql code generation.
http://www.mygenerationsoftware.com/portal/default.aspx
not sure about the comparison part, can you explain a bit more what you need?
January 20, 2009 at 3:30 am
Right Click on the column in SSMS and click rename..
January 20, 2009 at 2:47 am
Yes SSIS would be able to dp this nightly, schedule it as a job to run each night.
The best/easiest place to start would be open a new SSIS project...
January 19, 2009 at 12:09 pm
Not sure if it is possible to encrypt a proc.
Why do you not use security in SQL, and deny the user the right to view the procedure?
January 19, 2009 at 10:06 am
When you use a function like this then it will be called for each row that needs updating.
It would be far more efficent if you put the values that are...
January 19, 2009 at 9:49 am
SSIS would be perfect for this task.
Or you could try a backup/restore
January 19, 2009 at 9:38 am
A conditional split would be used for this,
You can do a look-up transformation against the target DW and check for the row, and then split out the data depending...
January 19, 2009 at 8:28 am
Could possible be a SQL injection attack.
How are you acessing your database?
are you using Stored Procedures or Inline SQL?
January 19, 2009 at 3:27 am
1 Lakh = 100,000 in the Indian numbering system
as mentioned you can not do this directly, either use linked servers or SSIS
MS does provide a driver for .DBF files..
January 16, 2009 at 10:17 am
TRACEY (1/16/2009)
Yes i don't want to spend hours on it he he.....i got three instances of system db to move around...
January 16, 2009 at 9:57 am
nabajyoti.b (1/16/2009)
could you please let me know the options to choose while i install the sql management studio without installing server.
Also, please note that i am intendint to connect...
January 16, 2009 at 9:32 am
this is the method that I use and Microsoft recommends;
http://msdn.microsoft.com/en-us/library/ms345408(SQL.90).aspx
January 16, 2009 at 9:18 am
How is the Access application connected to the SQL server?
Have you linked the tables into Access ? or are you using a connection string in the code?
or another way?
January 16, 2009 at 8:50 am
Viewing 15 posts - 1,636 through 1,650 (of 2,268 total)